Hi,
I need to have a regex that looks for any digit before and after the char /
for example This is my string1/232
I need to be able to extract 1/232
I am coding on java.
Any help will be appreciated.
I can probably just split on "/" and then for back and forth until next char is no digit, but I was wondering if there is something better that regex can offer.
Thanks