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

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

RegexOptions

IsMatch=true


#Value
01,2,3
14,5,8,9,1,2,3
21,2,3,4,5,6,7,8,9
Count: 3, 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
//.NET Regex.Split Online Tester: www.systemtextregularexpressions.com

//Namespace
using System.Text.RegularExpressions;

//Regex Pattern
string pattern = @"[\*]+(\d*?)";

//Regex example #1
Regex r = new Regex(@"[\*]+(\d*?)", RegexOptions.ExplicitCapture);
string[] result1 = r.Split("input text");

//Regex example #2
string[] result2 = Regex.Split("input text", @"[\*]+(\d*?)", RegexOptions.ExplicitCapture);
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
'.NET Regex.Split Online Tester: www.systemtextregularexpressions.com

'Namespace
Imports System.Text.RegularExpressions

'Regex Pattern
Dim pattern As String = "[\*]+(\d*?)"

'Regex example #1
Dim r As Regex = New Regex("[\*]+(\d*?)", RegexOptions.ExplicitCapture)
Dim result1() As String = r.Split("input text")

'Regex example #2
Dim result2() As String = Regex.Split("input text", "[\*]+(\d*?)", RegexOptions.ExplicitCapture)

Home     Match     Replace     Split     Help     Library     Contacts     netregex rss

Made by Koshevoy Dmitry [8Bytes],

© 2014-2024 Ukraine, Nikolaev.