N
nick.p.doyle
Hallo,
Am splitting on quoted strings first, then operators e.g.
a = Regex.Split( "a and ""b and c""", "("".+?"")|( and )")
I expect a=("a", " and ", """b and c""")
I receive a=("a", ""b and c"")
(empty strings ignored)
Help appreciated!
Am splitting on quoted strings first, then operators e.g.
a = Regex.Split( "a and ""b and c""", "("".+?"")|( and )")
I expect a=("a", " and ", """b and c""")
I receive a=("a", ""b and c"")
(empty strings ignored)
Help appreciated!