vote up 1 vote down star

A little stuck here. I have a simple question I guess.

Given the following input:

 content {c:comment comment}this is actual content{c:comment etc} content

I need a way to get the content and comments seperated, but I need to now the order of them. So a simple regex doesn't work.

I want to get this:

 content
 {c:comment comment}
 this is actual content
 {c:comment etc}
 content

Somebody a clue?

flag

1  
Can't you replace "{" by "\n{" and "}" by "}\n"? – Artelius Nov 7 at 23:23
I would end up with a white empty line if the {c:comment} would be before the first content. – Peterdk Nov 7 at 23:35
Doesn't sound like a huge price. You can trim that line out if you really want, or make the regex ignore ^{ – Artelius Nov 7 at 23:53

3 Answers

vote up 0 vote down check
string s = "content {c:comment comment}this is actual content{c:comment etc} content";
var split = Regex.Split(s, @"\{c:(?<comment>[^\}]*)\}");

NOTE: when the regex of a split has a capturing like (?<comment> ) it also gets returned.

link|flag
Ended up with: List<string> Regex.Split(input "{|}"). comments kept the "c:this is a comment" "c:" so I could recognize if it was a comment. Didn't think of Regex it's Split method. So this helped. – Peterdk Nov 12 at 16:41
vote up 2 vote down

As Artelius suggested:

Regex.Replace(
Regex.Replace(input, "({)", @"\r\n$1"),
                     "(})", @"$1\r\n");
link|flag
No, because you want a newline BEFORE { but AFTER }. – Artelius Nov 7 at 23:32
you're right, fixed – Rubens Farias Nov 8 at 0:06
vote up 0 vote down

The expression (.*?)\s*{c:\s*(.*?)}\s* gave me a string[] with the items: 'content', 'comment comment', 'this is actual content', 'comment etc', 'content'

Maybe that's close to what you're looking for.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.