Go Standard Library Cookbook
上QQ阅读APP看书,第一时间看更新

Finding the substring in text by the regex pattern

There are always tasks such as validating the input, searching the document for any information, or even cleaning up a given string from unwanted escape characters. For these cases, regular expressions are usually used.

The Go standard library contains the regexp package, which covers the operations with regular expressions.