There was an error while loading. Please reload this page.
1 parent d2a80fb commit 18f3d6cCopy full SHA for 18f3d6c
README.md
@@ -294,11 +294,6 @@
294
295
### 4.4 负向后行断言
296
297
-Negative lookbehind is used to get all the matches that are not preceded by a specific pattern. Negative lookbehind is denoted by
298
-`(?<!...)`. For example the regular expression `(?<!(T|t)he\s)(cat)` means: get all `cat` words from input string that
299
-are after not after the word `The` or `the`.
300
-<br />
301
-
302
负向后行断言是用于获取不在特定模式之前的所有匹配的内容。负向后行断言表示为 `(?<!...)`。例如正则表达式 `(?<!(T|t)he\s)(cat)`,表示: 在输入字符中获取所有不在 `The` 或 `the` 之后的所有单词 `cat`。
303
304
<pre>
0 commit comments