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

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

RegexOptions

IsMatch=true


#Value
0Hello
1 World
2 Bye
3 live
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
//.NET Regex.Split Online Tester: www.systemtextregularexpressions.com

//Namespace
using System.Text.RegularExpressions;

//Regex Pattern
string pattern = @"\/\*End\*\/";

//Regex example #1
Regex r = new Regex(@"\/\*End\*\/");
string[] result1 = r.Split("input text");

//Regex example #2
string[] result2 = Regex.Split("input text", @"\/\*End\*\/");
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 = "\/\*End\*\/"

'Regex example #1
Dim r As Regex = New Regex("\/\*End\*\/")
Dim result1() As String = r.Split("input text")

'Regex example #2
Dim result2() As String = Regex.Split("input text", "\/\*End\*\/")

Home     Match     Replace     Split     Help     Library     Contacts     netregex rss

Made by Koshevoy Dmitry [8Bytes],

© 2014-2024 Ukraine, Nikolaev.