Regex Samples: Difference between revisions

From HaFrWiki42
Jump to navigation Jump to search
mNo edit summary
Line 1: Line 1:
{{TOCright}}
{{TOCright}}


== Regex Samples ==
== Regex Samples Figures 1 ==
Always be precise in the way you specify your data. The following question can be multiple interpreted.
Always be precise in the way you specify your data. The following question can be multiple interpreted.
<br>Create a regular expression that matches the figures:
<br>Create a regular expression that matches the figures:
Line 17: Line 17:
|-
|-
| [[File:Regex-21-004.png|thumb|center|750px| Matches all correctly]]
| [[File:Regex-21-004.png|thumb|center|750px| Matches all correctly]]
|}
== Regex Samples Figures 1 ==
Always be precise in the way you specify your data. The following question can be multiple interpreted.
<br>Create a regular expression that matches the figures:
* 25 - 67
{| class="wikitableharmcenter" width="850"
|-
| [[File:Regex-22-002.png|thumb|center|750px| Matches correctly 25 - 27 but only on one line]]
|-
| [[File:Regex-22-001.png|thumb|center|750px| Matches correctly all figures 25 - 67]]
|}


== See also ==
== See also ==

Revision as of 11:07, 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.

Matches correctly but recognize 11 first as 1 and 1
Matches correctly but recognize 11 first as 1 and 1
Matches correctly but recognize 51 as 5 and 1
Matches all correctly

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
Matches correctly 25 - 27 but only on one line
Matches correctly all figures 25 - 67


See also

top

Reference

top