CAtlRegEx Unhandled Exception
-
Hey there, I have a string which includes Turkish chars. And a regex pattern.. my mfc app is compiled with MBSC (I am pretty sure) I got an error at the last letter says unhandled exception.. my string is (i am not sure if you can see it properly) "paylaş" so last letter makes rgx throws an error.. I kinda deep search about the error I would like to write it if needed.. So what am I missing why it fails on turkish chars? I do not define any type of CharTraits I mean I create my variable in this way: CAtlRgx<> myregx; did not specify char type between "<" and ">" thank you all..
-
Hey there, I have a string which includes Turkish chars. And a regex pattern.. my mfc app is compiled with MBSC (I am pretty sure) I got an error at the last letter says unhandled exception.. my string is (i am not sure if you can see it properly) "paylaş" so last letter makes rgx throws an error.. I kinda deep search about the error I would like to write it if needed.. So what am I missing why it fails on turkish chars? I do not define any type of CharTraits I mean I create my variable in this way: CAtlRgx<> myregx; did not specify char type between "<" and ">" thank you all..
CAtlRECharTraitsA contains the traits for ANSI characters, For multibyte characters, see CAtlRECharTraitsMB. By the way Microsoft removed ATL server support from VS 2008 including CATLRegExp class. Try using basic_regex<> from VC++ 2008 Feature Pack MFC Enhancements.