Question
Regex
I am using a regex to replace all the special characters,
spaces from a string.
s1 = 'This is a sample code, please; look at page 49'
ReReplace(s1, "[,;\s]", ",", "ALL" )>
so basically..all words are seperated with commas now. However, I don't get number 49 as one of words, why is that so?
s1 = 'This is a sample code, please; look at page 49'
ReReplace(s1, "[,;\s]", ",", "ALL" )>
so basically..all words are seperated with commas now. However, I don't get number 49 as one of words, why is that so?