Hi
I am trying to convert between html-style markup such as bold and italics into my own custom markup format:
<b>Bold word</b> ---> * Bold word *
So the bold tag is converted to wrapping stars, etc.
Whats the easiest/best/fastest way to do this? Parsing the string manually is easy enough, but what about regular expressions?
I am using C# .NET 3.5 :)