Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将正则表达式从 PHP 转换为 VB.Net。有谁知道这样做的软件实用程序或转换表?正则表达式如下:name=\"?(.*?)\"? value=\"(.*?)\". 任何帮助将不胜感激。
name=\"?(.*?)\"? value=\"(.*?)\"
您需要通过加倍双引号("")来在 VB 中取消双引号:
""
你的正则表达式是
name=""?(.*?)""? value=""(.*?)""