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 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题
  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题
  • ¥15 multisim电路设计
  • ¥20 用keil,写代码解决两个问题,用库函数
  • ¥50 ID中开关量采样信号通道、以及程序流程的设计
  • ¥15 U-Mamba/nnunetv2固定随机数种子
  • ¥15 vba使用jmail发送邮件正文里面怎么加图片
  • ¥15 vb6.0如何向数据库中添加自动生成的字段数据。