分割字符串并保留分隔符。

huangapple go评论85阅读模式
英文:

split string while keeping separators

问题

你好,以下是翻译好的内容:

有没有办法在保留分隔符的情况下拆分字符串 x+5-3+x=6+x-2?我尝试使用正则表达式的 [\+\-] 进行拆分,但结果是 x, 5, 3, ...,而我需要的是 x, +5, -3, +x。在Java中使用 (?=[-+]) 也不起作用。

谢谢。

英文:

any way I can split this string x+5-3+x=6+x-2 while keeping the separators, I tried regex split on [\+\-] but this gives me, x, 5, 3, ... and I need x, +5, -3, +x using (?=[-+]) as in Java doesn't work.

Thanks

答案1

得分: 1

使用FindAllString函数

regexp.MustCompile([-+\?=]?([0-9]|x)).FindAllString("x+5-3+x=6+x-2", -1)

英文:

use FindAllString

  regexp.MustCompile(`[-+\?=]?([0-9]|x)`).FindAllString("x+5-3+x=6+x-2", -1)

huangapple
  • 本文由 发表于 2017年8月26日 23:19:19
  • 转载请务必保留本文链接:https://go.coder-hub.com/45896910.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定