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
PHP:
$string ='This is the match [more or less]'; preg_match('#\[(.*)\]#', $string, $match); var_dump($match[1]);