From 564e3ed30f6e18a203b469a00481c3e87c24a7c4 Mon Sep 17 00:00:00 2001 From: natrak <> Date: Tue, 26 Jun 2001 14:58:00 +0000 Subject: - Fixed some HTML errors in the help. --- modules/account.module | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'modules/account.module') diff --git a/modules/account.module b/modules/account.module index ab4270743..db464623f 100644 --- a/modules/account.module +++ b/modules/account.module @@ -10,8 +10,8 @@ function account_help() {
Regular expressions are very powerful but often get complicated and nothing in this write-up can change that.
A complete explanation of regular expressions is beyond the scope of this help system. A regular expression may use any of the following special characters/constructs:
^ | Matches the beginning of a string. | |
$ | Matches the end of a string. | |
^ | Matches the beginning of a string. | |
$ | Matches the end of a string. | |
. | Matches any character (including newline). For example the regular expression a.c would match the strings abc, adb, axb, but not axxc. | |
a* | Matches any sequence of zero or more a characters. | |
a+ | Matches any sequence of one or more a characters. |
Examples:
apple | Matches any string that has the text "apple" in it. | |
^apple$ | Matches the exact string "apple". | |
^apple | Matches any string that starts with "apple". | |
apple | Matches any string that has the text "apple" in it. | |
^apple$ | Matches the exact string "apple". | |
^apple | Matches any string that starts with "apple". | |
domain\.com$ | Matches any string that ends with "domain.com". Note that you have to escape the dot in domain.com. |