I am trying to write a regex that selects everything between two characters.
For example, when the regex encounters a \'§\' I want it to select everythi
\'§\'
How about
"§([^;]*);"
The selected characters between the § and ; are available as match group 1.
§
;