You can use this:
([^\/]+)(?="$)
It will match anything after the last slash up to a quotation mark at the end of the line "$
(without including it in the match).
4
solved Regex match between two characters
You can use this:
([^\/]+)(?="$)
It will match anything after the last slash up to a quotation mark at the end of the line "$
(without including it in the match).
4
solved Regex match between two characters