duanqian9593 2018-01-06 07:29
浏览 1336
已采纳

正则表达式不匹配字符串中的双引号(仅单引号)

I have written this regex to match translation strings. Everything works fine except it only matches single quotations '' in strings, although I've written several rules to match both single and double quotations.

Here is my regex rule:

(Yii::t\()(\'|\")(.*?)(\'|\")\,(\'|\")(.*?)(\'|\")\)

as expected (\'|\") should match both ones but it doesn't.

I have also tried the following rules as well:

('|")
(['"])

Examples:

successfully matches these:

Yii::t('backend','My Profile')
Yii::t('backend','Log Out')

does not match these:

Yii::t("backend", "Search...")
Yii::t("backend", 'Sounds')

code i'm using to for matching regex:

re := regexp.MustCompile(`(Yii::t\()(\'|\")(.*?)(\'|\")\,(\'|\")(.*?)(\'|\")\)`)
matches := re.FindAllString(line, -1)

Update: The problem was because some strings contained white spaces (not because of quotations).

  • 写回答

3条回答 默认 最新

  • douhuang2673 2018-01-06 07:39
    关注

    Try this Regex:

    Yii::t\((?:['"][^'"]*['"],?\s*)*\)
    

    Click for Demo

    Explanation:

    • Yii::t\( - matches Yii::t( literally
    • (?:['"][^'"]+['"],?\s*)*\)
      • ['"] - matches either ' or "
      • [^'"]* - matches 0+ occurrences of any character that is neither ' nor "
      • ['"] - matches a single occurrence of either ' or "
      • ,? - matches 0 or 1 occurrence of a ,
      • \s* - matches 0+ occurrences of a whitespace
      • * - The last * matches the above 5 sub-patterns 0+ times
      • \) - matches ) literally

    Alternative Solution:

    Yii::t\(\s*['"][^'"]*['"]\s*(?:,\s*['"][^'"]*['"]\s*)*\)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?