Go,regexp:匹配不区分大小写并保留原始文本。

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

Go, regexp : to match either case and keep the original text

问题

我想用新的字符串替换与正则表达式匹配的字符串,但仍然保留原始文本的一部分。

我想要得到:

  1. I own_VERB it and also have_VERB it

  1. I own it and also have it

我该如何用一行代码实现这个?我尝试过,但无法进一步。谢谢。

  1. package main
  2. import "fmt"
  3. import "regexp"
  4. func getverb(str string) string {
  5. var validID = regexp.MustCompile(`(own)|(have)`)
  6. return validID.ReplaceAllString(str, "_VERB")
  7. }
  8. func main() {
  9. fmt.Println(getverb("I own it and also have it"))
  10. // 如何保留原始文本,例如
  11. // I own_VERB it and also have_VERB it
  12. }
英文:

I want to replace regex-matched strings with new string but still keeping part of the original text.

I want to get

  1. I own_VERB it and also have_VERB it

from

  1. I own it and also have it

how do I do this with one line of code? I tried but can't get further than this. Thanks,

http://play.golang.org/p/SruLyf3VK_

  1. package main
  2. import "fmt"
  3. import "regexp"
  4. func getverb(str string) string {
  5. var validID = regexp.MustCompile(`(own)|(have)`)
  6. return validID. ReplaceAllString(str, "_VERB")
  7. }
  8. func main() {
  9. fmt.Println(getverb("I own it and also have it"))
  10. // how do I keep the original text like
  11. // I own_VERB it and also have_VERB it
  12. }

答案1

得分: 3

你甚至不需要为此使用捕获组。

  1. package main
  2. import "fmt"
  3. import "regexp"
  4. func getverb(str string) string {
  5. var validID = regexp.MustCompile(`own|have`)
  6. return validID.ReplaceAllString(str, "
    package main
  7. import "fmt"
  8. import "regexp"
  9. func getverb(str string) string {
  10. var validID = regexp.MustCompile(`own|have`)
  11. return validID.ReplaceAllString(str, "${0}_VERB")    
  12. }
  13. func main() {
  14. fmt.Println(getverb("I own it and also have it"))
  15. // 如何保留原始文本,例如
  16. // I own_VERB it and also have_VERB it
  17. }
  18. _VERB")
  19. }
  20. func main() {
  21. fmt.Println(getverb("I own it and also have it"))
  22. // 如何保留原始文本,例如
  23. // I own_VERB it and also have_VERB it
  24. }

${0} 包含与整个模式匹配的字符串;${1} 将包含与第一个子模式(或捕获组)匹配的字符串(如果有的话),你可以在 Darka 的回答中看到。

英文:

You don't even need a capture group for this.

  1. package main
  2. import "fmt"
  3. import "regexp"
  4. func getverb(str string) string {
  5. var validID = regexp.MustCompile(`own|have`)
  6. return validID. ReplaceAllString(str, "
    package main
  7. import "fmt"
  8. import "regexp"
  9. func getverb(str string) string {
  10. var validID = regexp.MustCompile(`own|have`)
  11. return validID. ReplaceAllString(str, "${0}_VERB")	
  12. }
  13. func main() {
  14. fmt.Println(getverb("I own it and also have it"))
  15. // how do I keep the original text like
  16. // I own_VERB it and also have_VERB it
  17. }
  18. _VERB")
  19. }
  20. func main() {
  21. fmt.Println(getverb("I own it and also have it"))
  22. // how do I keep the original text like
  23. // I own_VERB it and also have_VERB it
  24. }

${0} contains the string which matched the whole pattern; ${1} will contain the string which matched the first sub-pattern (or capture group) if there is any, and which you can see in Darka's answer.

答案2

得分: 1

在替换过程中,$符号的解释与Expand中的解释相同,因此例如$1表示第一个子匹配的文本。

  1. package main
  2. import (
  3. "fmt"
  4. "regexp"
  5. )
  6. func main() {
  7. re := regexp.MustCompile("(own|have)")
  8. fmt.Println(re.ReplaceAllString("I own it and also have it", "_VERB"))
  9. }

输出结果:

  1. I own_VERB it and also have_VERB it
英文:

>Inside replacement, $ signs are interpreted as in Expand, so for instance $1 represents the text of the first submatch.

  1. package main
  2. import (
  3. "fmt"
  4. "regexp"
  5. )
  6. func main() {
  7. re := regexp.MustCompile("(own|have)")
  8. fmt.Println(re.ReplaceAllString("I own it and also have it", "_VERB"))
  9. }

Output

  1. I own_VERB it and also have_VERB it

答案3

得分: 1

似乎需要进行一些谷歌搜索:

  1. var validID = regexp.MustCompile(`(own|have)`)
  2. return validID.ReplaceAllString(str, "_VERB")

这段代码的作用是将字符串中的 "own" 或者 "have" 替换为 "${1}_VERB"。

英文:

Seems a bit googling helps:

  1. var validID = regexp.MustCompile(`(own|have)`)
  2. return validID. ReplaceAllString(str, "_VERB")

huangapple
  • 本文由 发表于 2013年10月2日 00:26:29
  • 转载请务必保留本文链接:https://go.coder-hub.com/19121331.html
匿名

发表评论

匿名网友

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

确定