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

Regular Expression to match every new line character (\n) inside a text block (content block)

I'm looking for a regular expression to match every new line character (\n) inside a XML tag which is <content>, or inside any tag which is inside that <content> tag, for example: <blog>bla bla</blog><content>1 \n 2 \n 3</content>

Tags: #encoding, #new line, #parsing, #string, #text. Views: 3772. stackoverflow, 7/12/2015
Link 1: http://www.systemtextregularexpressions.com/m16/regular-expression-to-match-every-new-line-character-n-inside-a-text-block-content-block
Link 2: http://www.systemtextregularexpressions.com/m16 (short)

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

RegexOptions

IsMatch=true


#ValueIndexLengthGroupsCaptures
0<content> (DO match new lines here) <p> (Do match new lines here) </p> </content> (Do NOT match new lines here) <content> (DO match new lines here) </content>52158Skip Navigation Links.
Expand Groups [2]Groups [2]
Skip Navigation Links.
Expand Captures [1]Captures [1]
Count: 1, 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 = @"<content>([^\n]*\n+)+</content>";

//Regex example #1
Regex r = new Regex(@"<content>([^\n]*\n+)+</content>");
Match m1 = r.Match("input text");
MatchCollection mc1 = r.Matches("input text");

//Regex example #2
Match m2 = Regex.Match("input text", @"<content>([^\n]*\n+)+</content>");
MatchCollection mc2 = Regex.Matches("input text", @"<content>([^\n]*\n+)+</content>");
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 = "<content>([^\n]*\n+)+</content>"

'Regex example #1
Dim r As Regex = New Regex("<content>([^\n]*\n+)+</content>")
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", "<content>([^\n]*\n+)+</content>")
Dim mc2 As MatchCollection = Regex.Matches("input text", "<content>([^\n]*\n+)+</content>")

Home     Match     Replace     Split     Help     Library     Contacts     netregex rss

Made by Koshevoy Dmitry [8Bytes],

© 2014-2024 Ukraine, Nikolaev.