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 Unity导出2D项目运行时图片变成马赛克
    • ¥15 关于communitytoolkit.mvvm的生成器得到的代码看起来没有被使用的问题
    • ¥15 matlab中此类型的变量不支持使用点进行索引
    • ¥15 咨询第六届工业互联网数据创新大赛原始数据
    • ¥15 Pycharm无法自动补全,识别第三方库函数接收的参数!
    • ¥15 STM32U575 pwm和DMA输出的波形少一段
    • ¥30 android百度地图SDK海量点显示标题
    • ¥15 windows导入environment.yml运行conda env create -f environment_win.yml命令报错
    • ¥15 这段代码可以正常运行,打包后无法执行,在执行for内容之前一直不断弹窗,请修改调整
    • ¥15 C语言判断有向图是否存在环路