Clarify regexes in readme

This commit is contained in:
clsr 2015-05-30 13:52:44 +02:00
parent 8b302dda04
commit 7d1e520f04
1 changed files with 2 additions and 0 deletions

View File

@ -22,3 +22,5 @@ Example usage in chat:
<sedbot> <foo> ACEGi
<foo> s/[a-e]//g s/\(.\)\(.\)/\2\1
<sedbot> <foo> gfhi
Note that the bot uses the standard grep (POSIX) regular expressions, i.e. use `.\+` and `\(foo\)\?` instead of `.+` and `(foo)?` as you'd do in egrep or other regex engines.