x Did you like it? Well, then please consider making a donation :)

Numbers from 0 to 100

Validate numbers from 0 to 100

Tags: #0 to 100, #0-100, #numbers between 0 to 100. Views: 5742. mahajan344, 4/14/2016
Link 1: http://www.systemtextregularexpressions.com/m22/numbers-from-0-to-100
Link 2: http://www.systemtextregularexpressions.com/m22 (short)

Length: 0b, Line: 1, Cursor: 0

RegexOptions

IsMatch=true


#ValueIndexLengthGroupsCaptures
0101Skip Navigation Links.Skip Navigation Links.
11222Skip Navigation Links.Skip Navigation Links.
20451Skip Navigation Links.Skip Navigation Links.
3100473Skip Navigation Links.Skip Navigation Links.
Count: 4, Time: 00:00:00

Share (without adding to database):

Source code

0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
//.NET Regex.Match Online Tester: www.systemtextregularexpressions.com

//Namespace
using System.Text.RegularExpressions;

//Regex Pattern
string pattern = @"^(?:100|[1-9]?[0-9])$";

//Regex example #1
Regex r = new Regex(@"^(?:100|[1-9]?[0-9])$", RegexOptions.Multiline);
Match m1 = r.Match("input text");
MatchCollection mc1 = r.Matches("input text");

//Regex example #2
Match m2 = Regex.Match("input text", @"^(?:100|[1-9]?[0-9])$", RegexOptions.Multiline);
MatchCollection mc2 = Regex.Matches("input text", @"^(?:100|[1-9]?[0-9])$", RegexOptions.Multiline);
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
'.NET Regex.Match Online Tester: www.systemtextregularexpressions.com

'Namespace
Imports System.Text.RegularExpressions

'Regex Pattern
Dim pattern As String = "^(?:100|[1-9]?[0-9])$"

'Regex example #1
Dim r As Regex = New Regex("^(?:100|[1-9]?[0-9])$", RegexOptions.Multiline)
Dim m1 As Match = r.Match("input text")
Dim mc As MatchCollection = r.Matches("input text")

'Regex example #2
Dim m2 As Match = Regex.Match("input text", "^(?:100|[1-9]?[0-9])$", RegexOptions.Multiline)
Dim mc2 As MatchCollection = Regex.Matches("input text", "^(?:100|[1-9]?[0-9])$", RegexOptions.Multiline)

Home     Match     Replace     Split     Help     Library     Contacts     netregex rss

Made by Koshevoy Dmitry [8Bytes],

© 2014-2024 Ukraine, Nikolaev.