douxidang9092 2019-08-12 18:34
浏览 90
已采纳

如何匹配彼此相邻的包围支架?

I'm am attempting to parse lines of Helm templates. I run into issues when I have value declarations side-by-side on the same line.

For example, the line image: "{{ $.Values.image.repository }}:{{ $.Values.image.tag }}" returns one big match as opposed to two matches within the brackets.

I have tried using (\-)?( )?(.*):( )\{\{( )(\$)?.Values.*\}\}.

I'd like to get both value instances instead of one large instance.

  • 写回答

1条回答 默认 最新

  • doudui6756 2019-08-12 18:40
    关注

    I'm guessing that maybe you might want to write an expression that'd look somewhat similar to:

    \s*{{\s*\$?\.Values([^}]*)?\s*}}
    

    Test

    package main
    
    import (
        "regexp"
        "fmt"
    )
    
    func main() {
        var re = regexp.MustCompile(`(?m)\s*{{\s*\$?\.Values([^}]*)?\s*}}`)
        var str = `image: "{{ $.Values.image.repository }}:{{ $.Values.image.tag }}`
    
        for i, match := range re.FindAllString(str, -1) {
            fmt.Println(match, "found at index", i)
        }
    }
    

    If you wish to explore/simplify/modify the expression, it's been explained on the top right panel of regex101.com. If you'd like, you can also watch in this link, how it would match against some sample inputs.


    RegEx Circuit

    jex.im visualizes regular expressions:

    enter image description here

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号