Link to home
Start Free TrialLog in
Avatar of Smyken
Smyken

asked on

Swedish Characters in Regular expression

How do I make my Regexp to show swedish characters as they are meant: öåä
They currently get returned as a ¿
If I get a match for example Gött then will be displayed as G¿tt

My code is below
Match LocalT = Regex.Match(result, "<h1><span property=\"item\">(?<LocalT>.*?)</span>");
                    
MessageBox.Show(LocalT.Groups["LocalT"].Value);

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Pui_Yun
Pui_Yun
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial