用于单引号和双引号
本文关键字:单引号 用于 | 更新日期: 2023-09-27 18:15:43
我想知道单引号和双引号的正则表达式是什么特别是像这样的1:
openquote(startswith) + word + closequote(endswith)
(singlequote)word(/singlequote) sample-> 'asdasdasdass'
(doublequote)word(/doublequote) sample-> "asdasdasdass"
在c#winforms/thanks .
——更新:
替换正则表达式
string hoveredWord = r.GetFragment("[a-zA-Z]").Text;
谢谢!
以下RegEx用于单引号符号+一些文本+单引号符号('asdasdasdass'):
Regex regexString = new Regex(@"'[^']*'");
以下RegEx用于双引号符号+一些文本+双引号符号("asdasdasdass"):
Regex regexString = new Regex(@"""[^""]*""");
正则表达式:
Former example : ^'''w+''
Later example : ^'"'w+'"
^ : match the beginning of the string
'' or '" : match the single quote or double quote
'w+ : match the alpha-numeric characters and underscore