Regular Expressions
Posted: Fri Mar 20, 2009 10:54 am
I am using following Regular expression to decode a response data.
wxString s = "[-|*|>]([[])([[:digit:]]+):([[:digit:]]+)[]]([[:print:]]+)(\r)"
In English locale it works well,
But in German Locale it fails, due to some german characters which are not in English (ä ö ü ß)
It is with the [:print:] command I guess.
I need a help on this issue
Range
wxString s = "[-|*|>]([[])([[:digit:]]+):([[:digit:]]+)[]]([[:print:]]+)(\r)"
In English locale it works well,
But in German Locale it fails, due to some german characters which are not in English (ä ö ü ß)
It is with the [:print:] command I guess.
I need a help on this issue
Range