标签: c# .net regex
我需要在XPath“root / customer / contact_number [@cellPhone]”中获取属性名称,这样我才能获得“cellPhone”。
我知道如何根据this使用“[@(。*?)]”来获取整个“[@cellPhone]”字符串。我也需要解决方案来成为Regex。
答案 0 :(得分:2)
试试这个:
(?<=\[@)(.*?)(?=\])