reg := NewRegexGo("a*b") //Create new regex pattern
result := reg.CheckIsMatch("aaaab") // return boolean type to check the string is match the pattern or not
reg := NewRegexGo("a*b") //Create new regex pattern
result := reg.CheckIsMatch("aaaab") // return boolean type to check the string is match the pattern or not