Use of Unicode characters -> Syntax.
-
HI, guys! I have a function in my application that searches for horizontal tabs in a text file. So far, I've been using a String^ variable named "Glo::m_tab" initialized as L" ". Works fine. But what if I want to look for a black star, or a form feed or any other control character within the file?. How do I work the U+0009 code for HT into my function?. I've found no examples. THANK YOU!!
-
HI, guys! I have a function in my application that searches for horizontal tabs in a text file. So far, I've been using a String^ variable named "Glo::m_tab" initialized as L" ". Works fine. But what if I want to look for a black star, or a form feed or any other control character within the file?. How do I work the U+0009 code for HT into my function?. I've found no examples. THANK YOU!!
-
Please review the documentation[^].
THANK YOU! I will.