2

can any one explain why does this match play?

Source:

package main

import "fmt"
import "regexp"

func main() {
    match, _ := regexp.MatchString("[a-z]+", "test?")
    fmt.Printf("the result of match: %v", match)
}

isn't the golang's regexp.MatchString is fully match? I can't understand and I am a newbie for golang

3
  • 4
    isn't the golang's regexp.MatchString is fully match? No, it's not. Commented Nov 18, 2015 at 12:56
  • is there any fully match function? Commented Nov 18, 2015 at 13:00
  • Just add anchors to your expression: ^[a-z]+$ Commented Nov 18, 2015 at 13:03

1 Answer 1

4

The regular expression "[a-z]+" will match "test" is the search text "test?".
Similarly, it will match "testing testing", "2001 a space oddessy", etc.

Go lang's regexp package matches search text according to the syntax and meaning of the regular expression. There isn't a method which itself tries to match the regular expression with the entire search text, and gives up if it can't, unless the regular expression defines that an entire search-text-match is the required behaviour.

The syntax of regular expressions does enable matching the entire search text.

'^', the start-anchor symbol at the start of the regular expression forces the match to include the start of the search text.
'$', the end-anchor symbol at the end of the regular expression forces the match to include the end of the search text.
They have different meaning in other positions within a regular expression.

As @TomCooper commented, use both start and end anchors around the regular expression pattern you are looking for. These anchor the enclosed regular expression to the start and end of the search text to ensure the entire search text matches the regular expression.

Sign up to request clarification or add additional context in comments.

1 Comment

@toolchainX - thank you! Your question seemed reasonable to me, so I don't really understand the down votes without any links to existing answers or the web. Best of luck using Go; IMHO it is a lovely language.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.