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
This one specifically works for javascript's regular expression parser /[^[\]]+(?=])/g
/[^[\]]+(?=])/g
just run this in the console
var regex = /[^[\]]+(?=])/g; var str = "This is a test string [more or less]"; var match = regex.exec(str); match;