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 find a regular expression in the given string with the help of
Find() method. This method returns a slice which is holding the text of the leftmost match in the original slice of the regular expression. Or return nil if no match found. 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) Find(s []byte) []byte
Example 1:
Output:
"geeks"
"geeks"
""
""
Example 2:
Output:
Found: "language"