Question about regular expressions and C#

Arcadio

Diamond Member
Jun 5, 2007
5,637
24
81
I need to take a string and split it using Regex.split. The pattern used for splitting the string is "\u". The problem is that Regex expects a unicode sequence after the "\u", so I'm getting an error because I didn't specify the unicode sequence after the "\u". What should I use to make Regex treat the "\u" pattern as a normal string?

Thanks
 

Arcadio

Diamond Member
Jun 5, 2007
5,637
24
81
Thanks. I tried something like that before, but for some reason it wasn't working. Now everything is fine.