pattern_id=prxparse('/\b(DEMENTIA|AD DEM|AD WITH|ADVANCED DEM|ALZH|ALZHEIMER\'S|ALZHEIMERS|DEMEN|DEMENTIA\- ALZH|DEMETIA|DEMENI|BPSD|BPDS|BSPD|BSDP|
DEMENTAI|H\/O DEMENETIA)\b/i');
I am using the above code to identify some keywords. One of the keywords (ALZHEIMER'S
) has apostrophe " ' " in it. I am trying to mask it by using a preceding backslash as I do for other special characters (such as "-") but it is not working.
Use double quotes on the outside:
pattern_id=prxparse("/\b(DEMENTIA|AD DEM|AD WITH|ADVANCED DEM|ALZH|ALZHEIMER\'S|ALZHEIMERS|DEMEN|DEMENTIA\- ALZH|DEMETIA|DEMENI|BPSD|BPDS|BSPD|BSDP|
DEMENTAI|H\/O DEMENETIA)\b/i");
You problem has nothing to do with REGEX, but with basic syntax of how to construct a string constant.
If the character you are using on the outside to indicate a string constant (either the single quote character, ', or the double quote character, ") appears in the string then it needs to be doubled up.
So to make a string constant that contains ALZHEIMER'S you would need to use one of these two methods:
"ALZHEIMER'S"
'ALZHEIMER''S'
In your case you should change the \' to '' instead.
Thanks Tom.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.