I have the following string:
@eur99.def.mark.ocal:7342s/mweb/web-style.s.git#v4.2.0
How can I get only the following numbers 4,2,0.
Basically I need all numbers after the dash sign (#);
I've tried this(using look behind pattern), but unsuccessfully.
Regex expression:
(?<=#)\d+
Note: PLEASE, not JS built in string methods