Hello,
I am trying to clean up my data, amongst others by deleting some common terms, as follows:
I've tried this:
But Stata indicates it's an unrecognized subcommand: "unrecognized command: ustrregexra".
What am I doing wrong?
I am trying to clean up my data, amongst others by deleting some common terms, as follows:
I've tried this:
Code:
replace win_name2 = ustrregexra(win_name2, "( NV)|( SA)|( BVBA)|( SPRL)|( N.V.)|( S.A.)|( CVBA)|( SCRL)|( LTD)", "", 1)
What am I doing wrong?