需要看上下文.
比如,这两个是没区别的:
str=/cat|dog/
str2=/(cat|dog)/
这两个是有区别的:
str=/abccat|dogabc/
str2=/abc(cat|dog)abc/
str匹配abccat或dogabc
str2匹配abccatabc或abcdogabc
需要看上下文.
比如,这两个是没区别的:
str=/cat|dog/
str2=/(cat|dog)/
这两个是有区别的:
str=/abccat|dogabc/
str2=/abc(cat|dog)abc/
str匹配abccat或dogabc
str2匹配abccatabc或abcdogabc