0

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

例如:

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

在 .cs

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

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

4

1 回答 1

0

使用正则表达式:

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

这将匹配介于两者之间的任何内容>,并且</

于 2013-04-26T15:51:34.147 回答