I need to implement subject in wxTextCtrl. The problem is that TextCtrl itself has no "Find" function. Documentation warns me that I can't use TextCtrl::GetValue because different platforms use different string format ('\n' or '\n\r'). What is a standard cross-platform solution?
2. Re: Find substring in wxTextCtrl
#5230
Posted by: 2004-10-14 00:52:33
I would use that TextCtrl::GetValue(). In your app just ignore '\r'.