misteralex
Member
- Joined
- Mar 16, 2016
- Messages
- 8
- Programming Experience
- Beginner
Hey guys,
so I got one RichTextBox that has a combination of normal text and some unicode. It looks like this:
"Blablabla /u0063 /u0063 blablab
blablabla /u0055 /u0023"
I figured out through MSDN how to convert the /u0063 into actual letters and symbols etc. I need to take all the strings that begin with a
and put it into my Converter Code/Function!
Now the question is: HOW do I EFFICIENTLY and effectively go through the COMPLETE RichTextbox and replace ALL the unicodes with their respective sign/actual letter?
Should I use RegEx? Should I use arrays (someone suggested that, not sure though)? Or are there certain Text/String Manipulation Methods to specifically achieve this?
so I got one RichTextBox that has a combination of normal text and some unicode. It looks like this:
"Blablabla /u0063 /u0063 blablab
blablabla /u0055 /u0023"
I figured out through MSDN how to convert the /u0063 into actual letters and symbols etc. I need to take all the strings that begin with a
VB.NET:
/u
Now the question is: HOW do I EFFICIENTLY and effectively go through the COMPLETE RichTextbox and replace ALL the unicodes with their respective sign/actual letter?
Should I use RegEx? Should I use arrays (someone suggested that, not sure though)? Or are there certain Text/String Manipulation Methods to specifically achieve this?