How do i extract everything after the 3rd / from the left in:
WinNT://PSAD/johndoe
The output should be "johndoe"
Thanks in advance for your assistance!
Either of these should work:
^.*\/(?<user_id>.*)
^[^\/]*\/\/[^\/]*\/(?<user_id>.*)
Either of these should work:
^.*\/(?<user_id>.*)
^[^\/]*\/\/[^\/]*\/(?<user_id>.*)