sorry but it I have:
string inputString = @"1992
188";
string inputString = @"1992
188";
To copy to clipboard, switch view to plain text mode
if I have ([^abc\\n"]) the newline is recognized; and it shouldn't be; the newline isn't recognized if I have ([^abc\n"]) with one \
I thought that was right; my question was on "
Sorry but with some prove, I see that to use " inside literal with meaning I need, it should be double quote ( ""):
string inputString = @"19""92"
regXep = ......([^abc\n""])
string inputString = @"19""92"
regXep = ......([^abc\n""])
To copy to clipboard, switch view to plain text mode
In this way I have string 19"92 and it doesn't recognized in one token but in two: 19 and 92.
Is right? (for \n: it seems works without \\ but with only one)....
Bookmarks