有的时候安全起见,对于输入的参数值,我们是需要过滤只保留自己需要的字符的,比如只保留数字字母,通常这个时候就会用到正则表达式。
那么go语言如何使用正则过滤字符串呢?
示例代码如下:
package main
import (
"fmt"
"log"
"regexp"
)
func main() {
example := "#GoLangCode!$!"
// Make a Regex to say we only want letters and numbers
reg, err := regexp.Compile("[^a-zA-Z0-9]+")
if err != nil {
log.Fatal(err)
}
processedString := reg.ReplaceAllString(example, "")
fmt.Printf("A string of %s becomes %s \n", example, processedString)
}
运行后会发现:#GoLangCode!$!
输出 过滤成了GoLangCode
。
参考资料
Remove all Non-Alphanumeric Characters from a String (with help from regexp)
如您从本文得到了有价值的信息或帮助,请考虑扫描文末二维码捐赠和鼓励。
如本文对您有用,捐赠和留言 将是对我最好的支持~(捐赠可转为站内积分)
如愿意,请向朋友推荐本站,谢谢。
尊重他人劳动成果。转载请务必附上原文链接,我将感激不尽。
留言