dongzhuo6137 2019-04-29 07:55
浏览 141
已采纳

如何使用正则表达式分隔双引号字符串和非双引号字符串?

I'm trying to build a plugin which accepts parameters and each of the parameters can be a double quoted string or a non double quoted string.

Some examples of valid parameters :

  1. "random token"
  2. "random token" 34
  3. "randomtoken"

So I'm trying to write a parseParameters function which would return two values, one is the content inside double quoted string and the other is the non double quoted string.

I tried solving this problem with two regular expressions

  1. \"(.*?)\"\s*\d* - https://regex101.com/r/uB4sI9/145
  2. \"(.*?)\" - https://regex101.com/r/Pnh9Xd/1

Below is one version of the code I tried (which didn't work for some cases though) :

Variable parameters in the below code is going to be a list. Something like ["\"random, "token\"", "45"]

    paramString := strings.Join(parameters, " ")
    regex, _ := regexp.Compile(`\"(.*?)\"\s*\d*`)
    tempString := regex.FindString(paramString)
    if len(parameters) == 1 && tempString != "" {
        tempString = strings.TrimLeft(strings.TrimRight(tempString, `\"`), `\"`)
        return tempString, "", true
    }
    if paramString != tempString {
        return "", "", false
    }
    splitBySpace := strings.Split(tempString, " ")
    doubleQuoted := strings.TrimLeft(strings.TrimRight(tempString, `\"`), `\"`)
    nonDoubleQuoted := splitBySpace[len(splitBySpace)-1]
    return doubleQuoted, nonDoubleQuoted, true

Expected input and output:

Input : ["\"random", "token\""]

Output : "random token", "" (first value specifies the double quoted string while the other value specifies the non double quoted string)

Input : ["\"random", "token\"", "45"]

Output : ["\"random token\"", 45]

Note that double quotes are escaped in the input.

  • 写回答

1条回答 默认 最新

  • dsfs1233 2019-04-29 09:23
    关注

    You can use the regex.FindAllStringSubmatch.

    Following function would do the job, the function assumes the input to be a single string like "random token" 32

    func parse(str string) (string, string) {
        regex, _ := regexp.Compile(`("[^"]*")\s*(\S*)`)
        submatches := regex.FindAllStringSubmatch(str, -1)
        if len(submatches) == 0 {
            return "",""
        }
        return submatches[0][1], submatches[0][2]
    
    }
    

    You can find working link to a sample program here

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

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条