I need to extract the username from a string which includes DomainUsername. Using DOMAIN\ as mentioned in this page doesn't work so I was hoping I could just return the characters to the right of the slash. Is that possible?
Page 1 / 1
/^[^\]+\/
- ^ assert position at start of the string
- [^\]+ match a single character not present in the list below
- Quantifier: + Between one and unlimited times, as many times as possible, giving back as needed [greedy]
- \ matches the character literally
- \ matches the character literally
Kind regards
Manfred
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.