Go Regexp와 Newline: A Subtle Distinction
모든 문자(.)가 모든 문자와 일치한다고 명시하는 Go의 re2 구문 문서에도 불구하고, 's'가 true로 설정된 경우 개행 문자를 포함하면 간단한 프로그램을 통해 이것이 사실이 아님을 알 수 있습니다.
프로그램 출력
s set to true not matched s set to false matched
설명
다른 많은 정규식 엔진과 마찬가지로 점 문자(.)는 일반 문자에만 일치합니다. 일치 항목에 줄 바꿈을 포함하려면 "모두 점" 플래그(?s)를 정규식에 추가해야 합니다.
예
<code class="go">import ( "fmt" "regexp" ) func main() { const text = "This is a test.\nAnd this is another line." // Without the "dot all" flag, newline is not matched. r1 := regexp.MustCompile(".+") fmt.Printf("s set to true\n") if !r1.MatchString(text) { fmt.Println("not matched") } // With the "dot all" flag, newline is matched. r2 := regexp.MustCompile("(?s).+") fmt.Printf("s set to false\n") if r2.MatchString(text) { fmt.Println("matched") } }</code>
출력
s set to true not matched s set to false matched
따라서 Go 정규식과 개행 문자를 일치시키려면 정규식 패턴에 "dot all" 플래그(?s)를 포함하는 것이 필수적입니다.
위 내용은 `s`가 True로 설정된 경우에도 Go의 정규식 `.`이 줄바꿈과 일치하지 않는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!