我想要某种方式在 C# 中表达通配符这是我想使用通配符的代码,用于从我已经拥有的 xml 代码中删除标签
public static String readfromnode(XNode x)
{
String before;
before = x.ToString();
before.Replace("<"the wild card should be here">", null);
return before;
}
我已经尝试过使用许多符号并将它们与它们相关联,@
但没有一个效果很好。
例如输入是
**<head>
<title>Benchmark 1</title>
</head>**
输出是
基准 1