Rails Noob's Notes

Because my memory is good but short.

Regular expressions

Special characters

Character Definition
. Any character.
\w Any English letter, digit or "_" (underscore).
\W Any character that is not \w.
\d Any digit character (0-9).
\D Any character that is not a digit (0-9).
\s Any white space character.