[PowerRename] fix for documentation (#3952)

This commit is contained in:
Enrico Giordani
2020-06-01 14:05:52 +02:00
committed by GitHub
parent 4cc6c5ec35
commit 8f3b863edd

View File

@@ -65,7 +65,7 @@ Simple matching examples:
| .* | Match all the text in the name |
| ^foo | Match text that begins with "foo" |
| bar$ | Match text that ends with "bar" |
| ^foo bar$ | Match text that begins with "foo" and ends with "bar" |
| ^foo.\*bar$ | Match text that begins with "foo" and ends with "bar" |
| .+?(?=bar) | Match everything up to "bar" |
| foo[\s\S]\*bar | Match everything between "foo" and "bar" |