Hi,
I have a String "REC/LESS FEES/CODE/AU013423"
.
What could be the regEx expression to match "REC"
and "AU013423"
(anything that is not surrounded by slashes /
)
I am using /^>*/
, which works and matches the string within slash's i.e. using this I am able to find "/LESS FEES/CODE/"
, but I want to negate this to find reverse i.e. REC
and AU013423
.
Need help on this. Thanks