I need some help with regex with this test string:
Kershing_User ID/Electronic Delivery_6ZZ138429_ 3142-999999__1
I want one match to select everything except the forward slash, so this would be acceptable:
Kershing_User IDElectronic Delivery_6ZZ138429_ 3142-999999__1
Even better would be to return this with a substitution of a _.
Kershing_User ID_Electronic Delivery_6ZZ138429_ 3142-999999__1
I know how to do lookarounds and can individually match the part before and after the /, but not all in one go. Anything else I have tried has matched it in two pieces, and thus doesn't work the LF Token Dialog.
This does the before:
.*(?=\/)
This does the after:
(?<=\/).*