vote up 1 vote down star

I have a string which contain tags in the form < tag >. Is there an easy way for me to programmatically replace instances of these tags with special ascii characters? e.g. replace a tag like "< tab >" with the ascii equivelent of '/t'?

flag

4 Answers

vote up 10 vote down check
string s = "...<tab>...";
s = s.Replace("<tab>", "\t");
link|flag
vote up 2 vote down
public static Regex regex = new Regex("< tab >", RegexOptions.CultureInvariant | RegexOptions.Compiled);
public static string regexReplace = "\t";
string result = regex.Replace(InputText,regexReplace);
link|flag
vote up 2 vote down
using System.Text.RegularExpressions;

Regex.Replace(s, "TAB", "\t");//s is your string and TAB is a tab.
link|flag
vote up 1 vote down

Regex patterns should do the trick.

link|flag
Any useful tutorials or code snippits? – TK Sep 18 '08 at 16:47
I'm a big fan of Expresso ultrapico.com to guide me through the tough ones. – ddc0660 Sep 18 '08 at 16:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.