Feeds:
Posts
Comments

Archive for the ‘Javascript’ Category

Regular Expressions

. Matches any single character
[ ] A bracket expression. Matches a single character that is contained within the brackets.
[^ ] Matches a single character that is not contained within the brackets.
^ Matches the starting position within the string. In line-based tools, it matches the starting position of any line.
$ Matches the ending [...]

Read Full Post »