Golang正則模組使用

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

最近在開發過程中會遇到一些字串匹配相關的內容,正好去大概學習了下Golang中的regexp模組。因為目前正則模組對我來說更多的就是去匹配並處理字串的,因此目前主要關注幾個返回為string類型的方法。

regexp模組的結構體和方法定義

//正則結構體type Regexp struct {        // contains filtered or unexported fields}//初始化結構體對象的方法func Compile(expr string) (*Regexp, error)func CompilePOSIX(expr string) (*Regexp, error)func MustCompile(str string) *Regexpfunc MustCompilePOSIX(str string) *Regexp//結構體方法.常用的幾個//在字串s中尋找完全符合Regexre的字串.如果匹配到就停止不進行全部匹配,如果匹配不到就輸出Null 字元串func (re *Regexp) FindString(s string) string//在字串s中匹配re運算式,n表示匹配的次數,-1表示匹配整個字串。返回字串切片func (re *Regexp) FindAllString(s string, n int) []string//在src中匹配re,並替換為repl,該種方式中repl中的$符號會展開實際的變數,通常用在回溯尋找中func (re *Regexp) ReplaceAllString(src, repl string) string//在src中匹配re,並替換為repl,該方法會按照repl中的字面意思進行替換,不支援進階變數匹配,比如回溯等等func (re *Regexp) ReplaceAllLiteralString(src, repl string) string//在字串中是否匹配到re定義的字串,匹配返回truefunc (re *Regexp) MatchString(s string) bool

簡單樣本

$ cat regexp-test.go/** * @File Name: test.go * @Author: * @Email: * @Create Date: 2017-12-24 15:12:31 * @Last Modified: 2017-12-24 16:12:12 * @Description: */package mainimport ("fmt""regexp")func main() {  testString := "k8s-test-pod-12343k811sadsxsakxz-test-k8s-container.k8s-@xxbandy.github.io"re := regexp.MustCompile("k8s?")  fmt.Println("src string:",testString)  fmt.Println("regular expression:",re)  fmt.Println("FindAllString matching all:",re.FindAllString(testString,-1))  fmt.Println("FindAllString matching twice:",re.FindAllString(testString,2))  fmt.Println("FindString:",re.FindString(testString))  fmt.Println("ReplaceAllString:",re.ReplaceAllString(testString,"biaoge"))  fmt.Println("ReplaceAllLiteralString:",re.ReplaceAllLiteralString(testString,"BIAOGE"))  fmt.Println("Match String:",re.MatchString(testString))}$ go run regexp-test.gosrc string: k8s-test-pod-12343k811sadsxsakxz-test-k8s-container.k8s-@xxbandy.github.ioregular expression: k8s?FindAllString matching all: [k8s k8 k8s k8s]FindAllString matching twice: [k8s k8]FindString: k8sReplaceAllString: biaoge-test-pod-12343biaoge11sadsxsakxz-test-biaoge-container.biaoge-@xxbandy.github.ioReplaceAllLiteralString: BIAOGE-test-pod-12343BIAOGE11sadsxsakxz-test-BIAOGE-container.BIAOGE-@xxbandy.github.ioMatch String: true

不論是哪種語言的正則模組,個人認為文法都不是最重要的,最重要我認為還是Regex本身,如果對Regex本身認識比較深的話,不論用哪種語言工具都可以很靈活的處理各種業務情境。這裡附上一篇當年寫的Regex相關的文章

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.