我想要做的就是将格式化值从asp文字移动到字符串。
例如:
<asp:literal id='test'> </asp:literal>
在.cs
test.Text = '<b tag>USA</b tag>';
String newTest = test.Text;
我在字符串newTest中获得'USA'这个值。 我想要的只是美国。
答案 0 :(得分:0)
使用正则表达式:
const string input = "<b tag>USA</b tag>";
var match = Regex.Match(input, @"\>(?<country>.*)\<\/");
var country = match.Groups["country"].Value;
这将匹配>
和</