I'm attempting to us rex or a similar function that will be able to help me remove the domain identifier from a username from a list of events where that may not always be present.
The usernames in a list can appear like:
MA\\user2
JP\\user5
user6
far\\user4
The closest thing I've got is: `(^[^\\\\]+\\\\)?(?P\w+)`
However, that isn't working correctly as I'm getting the MA, JP, etc in my field instead of the text afterward for those which have those identifiers.
Could someone help identify what I may have done wrong? I've been using regexpal.com to do some testing, but on that site, it appears what I'm doing is correct.
↧