我在python中有这个正则表达式:
'<input type="hidden" name="GALX" value="(?P<galx>[a-zA-Z0-9_]+)">'
我想要一个等效的C#正则表达式字符串。该字符串在c#中给出了解析错误。提前谢谢。
我试过这个:
Regex rc = new Regex("<input type=\"hidden\" name=\"GALX\" value=\"(?P<galx>[a-zA-Z0-9_]+)\">");
它给了我这个错误:
parsing \"<input type=\"hidden\" name=\"GALX\" value=\"(?P<galx>[a-zA-Z0-9_]+)\">\" - Unrecognized grouping construct.