Let's say I want to match the text "something" in:
... ^something^ ...
To get everything between the ^, I can do:
However, is there a way to use a character class to get every character except ^, the negation character? For example, something like:
\^([^^])\^
What would be the proper way to escape [^^] ?