Hi, I have a String "REC/LESS FEES/CODE/AU013423" what could be the regEx expression to match "REC", "AU013423" (means match anything which is not surrounded by slash's (/) ) 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 ...