But it does not match anything... But I tried separatly and it returns
me the good things. I do not understand what's the problem ^^'
I don't know how you've come to the "\/" part of the regex. This makes
the regex match only strings with some word characters followed by a
slash followed by some digits. For example the string "e/12.1516".
I think you rather want "\s*=\s*" instead of the "\/" (an equals sign
between spaces).
By the way: The dot "." has to be escaped. Otherwise it will match *any*
character except newlines. And I think you should replace the "\w" with
alphabetic characters: "[A-Za-z]". Because the \w also matches digits
and the underscore.
This works for me. Note that the start anchor "^" is outside of the
group, and that between both groups you need to match spaces and "=".
Also the "." has to be escaped to be matched exactly, otherwise it's
any character: