• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Question about regular expressions and C#

Arcadio

Diamond Member
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
 
Thanks. I tried something like that before, but for some reason it wasn't working. Now everything is fine.
 
Back
Top