Given the line:
/home "1020....2010" main
I would like to use home, 1020and 2010using regex, but I still have problems with the quote. Can someone help me?
Thank you guys for your post. I understand that my code may have problems. Here
string pattern [1] = @ "blablabla"; string pattern [2] = @ "blablabla"; ......
foreach (line s in the template) {if (regex.match (line, s) .success) {......}}
Then an error occurs indicating the unexpected character "\"
source
share