diff --git a/regexp.md b/regexp.md index 30bcd8ac2..212bf4815 100644 --- a/regexp.md +++ b/regexp.md @@ -35,18 +35,20 @@ description: | ### Anchors -| Pattern | Description | -| ------- | ----------------------- | -| `\G` | Start of match | -| `^` | Start of string | -| `$` | End of string | -| `\A` | Start of string | -| `\Z` | End of string | -| `\z` | Absolute end of string | -| `\b` | A word boundry | -| `\B` | Non-word boundry | -| `^abc` | Start with `abc` | -| `abc$` | End with `abc` | +| Pattern | Description | +| ------- | ---------------------- | +| `\G` | Start of match | +| `^` | Start of string \* | +| `$` | End of string \* | +| `\A` | Start of string | +| `\Z` | End of string | +| `\z` | Absolute end of string | +| `\b` | A word boundry | +| `\B` | Non-word boundry | +| `^abc` | Start with `abc` | +| `abc$` | End with `abc` | + +For multiline patterns (`m` flag), `^` and `$` will act as start and end of line. ### Escaped characters