Click here to Skip to main content
15,791,112 members
Home / Discussions / Regular Expressions
   

Regular Expressions

 
GeneralRe: Swap two values based on pattern Pin
biop.codeproject5-Aug-12 18:12
biop.codeproject5-Aug-12 18:12 
GeneralRe: Swap two values based on pattern Pin
Peter_in_27805-Aug-12 18:59
professionalPeter_in_27805-Aug-12 18:59 
QuestionRegEx Problem Pin
Kevin Marois19-Jun-12 13:12
professionalKevin Marois19-Jun-12 13:12 
AnswerRe: RegEx Problem Pin
AspDotNetDev19-Jun-12 13:34
protectorAspDotNetDev19-Jun-12 13:34 
GeneralRe: RegEx Problem Pin
AspDotNetDev19-Jun-12 13:52
protectorAspDotNetDev19-Jun-12 13:52 
GeneralRe: RegEx Problem Pin
Kevin Marois19-Jun-12 14:02
professionalKevin Marois19-Jun-12 14:02 
AnswerRe: RegEx Problem Pin
AspDotNetDev19-Jun-12 14:35
protectorAspDotNetDev19-Jun-12 14:35 
Questioncan someone tell me whats wrong with this expression? Pin
ChekGuy29-Apr-12 12:48
ChekGuy29-Apr-12 12:48 
pretty new to regex. this is a great article.

can someone tell me whats wrong with my expression? I'm using this from C#. I'm getting the response from a blog in a malformed xml format. Need to extract entries out of it. In a simple format inpu is similar to the following.

string input = @"<entry><id>tag:myblog.com try</entry><entry><id>tag:myblog.com tryagain</entry><entry><id>tag:myblog.com hello </enty>";

I need to identify the number of entries, and then processing each of them.

Regex blogsRegEx = new Regex(@"<entry><id>tag:myblog.*</entry>");

MatchCollection blogEntries = blogsRegEx.Matches(input);

I always get just 1 entry. It matches the whole thing instead of matching multiple strings in the pattern <entry<id>tag:myblog....</entry>.

Can someone help what am I missing here? do i need to use subexpressions here?

modified 29-Apr-12 19:28pm.

AnswerRe: can someone tell me whats wrong with this expression? Pin
egenis29-Apr-12 20:22
egenis29-Apr-12 20:22 
AnswerRe: can someone tell me whats wrong with this expression? Pin
Peter_in_278029-Apr-12 20:46
professionalPeter_in_278029-Apr-12 20:46 
QuestionEither start or not a "d" Pin
Bernhard Hiller6-Mar-12 1:50
Bernhard Hiller6-Mar-12 1:50 
AnswerRe: Either start or not a "d" Pin
Bernhard Hiller6-Mar-12 3:02
Bernhard Hiller6-Mar-12 3:02 
QuestionTrying to match non-quoted sections Pin
PIEBALDconsult24-Jan-12 5:30
professionalPIEBALDconsult24-Jan-12 5:30 
AnswerRe: Trying to match non-quoted sections Pin
Andreas Gieriet7-Apr-12 5:33
professionalAndreas Gieriet7-Apr-12 5:33 
GeneralRe: Trying to match non-quoted sections Pin
PIEBALDconsult7-Apr-12 10:17
professionalPIEBALDconsult7-Apr-12 10:17 
GeneralRe: Trying to match non-quoted sections Pin
Andreas Gieriet7-Apr-12 12:04
professionalAndreas Gieriet7-Apr-12 12:04 
GeneralRe: Trying to match non-quoted sections Pin
PIEBALDconsult9-Apr-12 19:03
professionalPIEBALDconsult9-Apr-12 19:03 
GeneralRe: Trying to match non-quoted sections Pin
Andreas Gieriet10-Apr-12 10:59
professionalAndreas Gieriet10-Apr-12 10:59 
GeneralRe: Trying to match non-quoted sections Pin
PIEBALDconsult11-Apr-12 4:10
professionalPIEBALDconsult11-Apr-12 4:10 
GeneralRe: Trying to match non-quoted sections Pin
Andreas Gieriet11-Apr-12 14:11
professionalAndreas Gieriet11-Apr-12 14:11 
GeneralRe: Trying to match non-quoted sections Pin
PIEBALDconsult11-Apr-12 15:45
professionalPIEBALDconsult11-Apr-12 15:45 
GeneralRe: Trying to match non-quoted sections Pin
Andreas Gieriet11-Apr-12 22:52
professionalAndreas Gieriet11-Apr-12 22:52 
GeneralRe: Trying to match non-quoted sections Pin
Luc Pattyn7-Apr-12 10:43
sitebuilderLuc Pattyn7-Apr-12 10:43 
GeneralRe: Trying to match non-quoted sections Pin
Andreas Gieriet7-Apr-12 11:39
professionalAndreas Gieriet7-Apr-12 11:39 
QuestionSomething I just learned, with IP addresses Pin
Paladin200020-Jan-12 7:42
Paladin200020-Jan-12 7:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.