我只想知道单引号和双引号的正则表达式是什么,特别是这样的 1:
openquote(startswith) + word + closequote(endswith)
(singlequote)word(/singlequote) sample-> 'asdasdasdass'
(doublequote)word(/doublequote) sample-> "asdasdasdass"
在 c#winforms /谢谢。
- - 更新:
在这一行中替换正则表达式:
string hoveredWord = r.GetFragment("[a-zA-Z]").Text;
谢谢!