Regex Samples: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
|||
Line 30: | Line 30: | ||
|} | |} | ||
== Regex Email Address == | |||
Always be precise in the way you specify your data. The following question can be multiple interpreted. | |||
<br>Create an email checker for input validation of an email. | |||
{| class="wikitableharmcenter" width="850" | |||
|- | |||
| [[File:Regex-23-001.png|thumb|center|750px| Email checker ]] <ref>[http://www.regular-expressions.info/email.html], This email checker is discussed on the page of Jan Goyvaerts.</ref> | |||
|} | |||
== See also == | == See also == |
Revision as of 11:54, 17 February 2015
Regex Samples Figures 1
Always be precise in the way you specify your data. The following question can be multiple interpreted.
Create a regular expression that matches the figures:
- 1 - 49
- 01 - 49
Of course the ^[0-4]?[0-9] is much too simple.
![]() |
![]() |
![]() |
![]() |
Regex Samples Figures 1
Always be precise in the way you specify your data. The following question can be multiple interpreted.
Create a regular expression that matches the figures:
- 25 - 67
![]() |
![]() |
Regex Email Address
Always be precise in the way you specify your data. The following question can be multiple interpreted.
Create an email checker for input validation of an email.
![]() |