zoukankan      html  css  js  c++  java
  • Go语言标准库之regexp

    regexp是go支持正则表达式的相关内置模块。

    一、引入

    import "regexp"

    二、使用

        2.1 regexp.MatchString 使用正则表达式匹配字符串

    match, _ := regexp.MatchString("H(.*)!", "Hello world!")
    fmt.Println(match)  // true

        2.2 regexp.Match 使用正则表达式匹配字符串

    match, _ := regexp.Match("H(.*)!", []byte("Hello World!"))
    fmt.Println(match)  // true

        2.3 regexp.Compile 使用正则表达式匹配字符串

    compile, _ := regexp.Compile("H(.*)!")
    compileMatch := compile.MatchString("Hello World!")
    fmt.Println(compileMatch)  // true

        2.4 compile.FindString 返回匹配到的字符串

    compile, _ := regexp.Compile("H(.*)!")
    compileFindString := compile.FindString("Hello World!")
    fmt.Println(compileFindString)  // Hello World!

        2.5 compile.Find 返回匹配到的字符串

    compile, _ := regexp.Compile("H(.*)!")
    compileFind := compile.Find([]byte("Hello World!"))
    fmt.Println(string(compileFind))  // Hello World!

        2.6 compile.FindStringIndex 返回第一次匹配的起始索引

    compile, _ := regexp.Compile("H(.*)!")
    compileIndex := compile.FindStringIndex("Hello World!")
    fmt.Println(compileIndex)  // [0 12]

    未完待续!

  • 相关阅读:
    Java变量的作用域
    Java访问修饰符(访问控制符)
    Java类的定义及其实例化
    强调一下编程风格
    Java StringBuffer与StringBuider
    Java字符串(String)
    windows eclipse安装lombok插件
    mac 下eclipse安装lombok插件
    【四】Ribbon负载均衡
    【三】Eureka服务注册与发现
  • 原文地址:https://www.cnblogs.com/aaronthon/p/13540097.html
Copyright © 2011-2022 走看看