Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: st: How to identify multiple substrings within a string
From
Ryan Kessler <[email protected]>
To
[email protected]
Subject
Re: st: How to identify multiple substrings within a string
Date
Sun, 13 Jan 2013 20:02:37 -0500
input str30 string
"diarrhoea"
"nil diarrhoea"
"no vomiting/diarrhoea"
"denies diarrhoea/vomiting"
end
gen nodi = regexm(lower(string), "(nil |no |denies )(.*)(diarrhoea)")
tab nodi
Best,
Ryan Kessler
On Sun, Jan 13, 2013 at 6:37 PM, Michelle T. Butler
<[email protected]> wrote:
> Hi all, I am searching a string variable for cases who don't have diarrhoea.I need to identify records where the terms nil, no or denies preceeds the term diarrhoea in the same sentence.I have already identified that these terms do not always immediately preceed diarrhoea eg. No vomiting/diarrhoea, so I am looking for a way to extract all observations where nil, no, denies occurs in close proximity to diarrhoea, ignoring spelling errors/upper/lower case variations etc.Thank you for your help,Tove Fitzgerald.
>
>
>
> *
> * For searches and help try:
> * http://www.stata.com/help.cgi?search
> * http://www.stata.com/support/faqs/resources/statalist-faq/
> * http://www.ats.ucla.edu/stat/stata/
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/faqs/resources/statalist-faq/
* http://www.ats.ucla.edu/stat/stata/