A regular expression is a sequence of characters which define a search pattern. Go language support regular expressions. A regular expression is used for parsing, filtering, validating, and extracting meaningful information from large text, like logs, the output generated from other programs, etc.
In Go regexp, you are allowed to split a slice into substrings separated by the specified expression with the help of Split() method. This method returns a slice of the substrings between those expression matches and the count represents the number of substrings to return. This method is defined under the regexp package, so for accessing this method you need to import the regexp package in your program.
Syntax:
func (re *Regexp) Split(str string, m int) []string
Here, if m>0, then it returns at most m substrings and the last string substring will not split. If m == 0, then it will return nil. If m<0, then it will return all substrings.
Example 1:
package main
import (
"fmt"
"regexp"
)
func main() {
m1 := regexp.MustCompile(`e`)
fmt.Println(m1.Split( "GeeksforGeeks" , -1))
fmt.Println(m1.Split( "GeeksforGeeks" , 1))
fmt.Println(m1.Split( "GeeksforGeeks" , 0))
fmt.Println(m1.Split( "GeeksforGeeks" , 3))
fmt.Println(m1.Split( "GeeksforGeeks" , 2))
fmt.Println()
m2 := regexp.MustCompile(`123`)
fmt.Println(m2.Split( "123Gee123ks123Geek123s" , -2))
fmt.Println(m2.Split( "123Gee123ks123Geek123s" , 3))
fmt.Println(m2.Split( "123Gee123ks123Geek123s" , 0))
fmt.Println(m2.Split( "123Gee123ks123Geek123s" , -1))
fmt.Println(m2.Split( "123Gee123ks123Geek123s" , 1))
}
|
Output:
[G ksforG ks]
[GeeksforGeeks]
[]
[G ksforGeeks]
[G eksforGeeks]
[ Gee ks Geek s]
[ Gee ks123Geek123s]
[]
[ Gee ks Geek s]
[123Gee123ks123Geek123s]
Example 2:
package main
import (
"fmt"
"regexp"
)
func main() {
s := "A vv regular vv expression v is vv a sequence v" +
" of vv characters v which define a vv search pattern."
m := regexp.MustCompile(`v`)
res1 := m.Split(s, -1)
fmt.Println(res1)
res2 := m.Split(s, 1)
fmt.Println(res2)
res3 := m.Split(s, -0)
fmt.Println(res3)
res4 := m.Split(s, -4)
fmt.Println(res4)
}
|
Output:
[A regular expression is a sequence of characters which define a search pattern.]
[A vv regular vv expression v is vv a sequence v of vv characters v which define a vv search pattern.]
[]
[A regular expression is a sequence of characters which define a search pattern.]
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
05 Sep, 2019
Like Article
Save Article