Q:

Golang program to find a specified string pattern within a byte array using regular expression

belongs to collection: Golang Regular Expressions Programs

0

In this program, we will find a specified pattern within a specified byte array using the Match() function. After that, print the appropriate message on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to find a specified string pattern within a byte array using regular expression is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to find a specified string pattern
// within a byte array using regular expression.

package main

import "fmt"
import "regexp"

func main() {
	result, _ := regexp.Compile("L([A-Z]+)N")

	bArray := []byte{'L', 'A', 'N'}
	if result.Match(bArray) {
		fmt.Println("Matched")
	} else {
		fmt.Println("Not Matched")
	}
}

Output:

Matched

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmtregexp packages then we can use a function related to the fmt and regexp package.

In the main() function, we found a specified string pattern within the specified string using the Match() function and then print the appropriate message on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

<< Golang program to demonstrate the regular expressi...