Dear sirs,
I'm using Stata18 for Mac (Intel 64-bit)
I've been able to get a substring from string variables through regex and to report it in a new variable with the following code:
It worked very well in returning the substrings and also output that there were 33,214 missing values generated.
Is there any way to retrieve these records?
Thank you in advance for your support and availability
I'm using Stata18 for Mac (Intel 64-bit)
I've been able to get a substring from string variables through regex and to report it in a new variable with the following code:
Code:
generate match = regexs(2) if regexm(varname, regex_pattern)
Is there any way to retrieve these records?
Thank you in advance for your support and availability
Comment