The source text to run the RexEx on
Your RegExe example
Tip: (?<pre>[\wåøæ-]*)
The parenthesis starting with a ? makes a "capturing group". It is named <pre> and it captures any of these chars [\wåøæ-] from zero to any (The "*") times. Try to hover over the result below with the links, and you will see what is captured in the groups of each result in the "info" area.