我想将格式化的文字字符串移动到普通字符串

时间:2013-04-26 15:43:27

标签: c# asp.net

我想要做的就是将格式化值从asp文字移动到字符串。

例如:

<asp:literal id='test'> </asp:literal>

在.cs

test.Text = '<b tag>USA</b tag>';
String newTest = test.Text;

我在字符串newTest中获得'USA'这个值。 我想要的只是美国

1 个答案:

答案 0 :(得分:0)

使用正则表达式:

const string input = "<b tag>USA</b tag>";
var match = Regex.Match(input, @"\>(?<country>.*)\<\/");
var country = match.Groups["country"].Value;

这将匹配></

之间的任何内容