forked from unknwon/the-way-to-go_ZH_CN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pattern.go
36 lines (29 loc) · 788 Bytes
/
pattern.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// pattern.go
package main
import (
"fmt"
"regexp"
"strconv"
)
func main() {
searchIn := "John: 2578.34 William: 4567.23 Steve: 5632.18" // string to search
pat := "[0-9]+.[0-9]+" // pattern search for in searchIn
f := func(s string) string {
v, _ := strconv.ParseFloat(s, 32)
return strconv.FormatFloat(v*2, 'f', 2, 32)
}
if ok, _ := regexp.Match(pat, []byte(searchIn)); ok {
fmt.Println("Match found!")
}
re, _ := regexp.Compile(pat)
str := re.ReplaceAllString(searchIn, "##.#") // replace pat with "##.#"
fmt.Println(str)
// using a function :
str2 := re.ReplaceAllStringFunc(searchIn, f)
fmt.Println(str2)
}
/* Output:
Match found!
John: ##.# William: ##.# Steve: ##.#
John: 5156.68 William: 9134.46 Steve: 11264.36
*/