I need to extract from a string a set of characters which are included between two delimiters, without returning the delimiters themselves.
A simple example should b
I wanted to find a string between / and #, but # is sometimes optional. Here is the regex I use:
(?<=\/)([^#]+)(?=#*)