I have a string like:

{A}{B}={C}{D}<{E}{F}<=

What I want to do is split that string using a regular expression so as to get something like:

1: {A}{B}=
2: {C}{D}<
3: {E}{F}<=     

I'm currently splitting the string using (?<=\>)|(?<=\<\=)|(?<=\>\=)|(?<=\=)|(?<=\<)|(?<=!\=) but it's not producing the desired result, as you can see:

1: {A}{B}=
2: {C}{D}<
3: {E}{F}<
4: =

What do I need to change in the regular expression to get the result I'm looking for?

link|improve this question
2  
What language are you using? – Mark Byers Nov 11 '11 at 22:05
feedback

1 Answer

up vote 2 down vote accepted

Try this instead:

(?<=<=)|(?<=>=)|(?<=!=)|(?<==(?!=))|(?<=<(?!=))|(?<=>(?!=))

Or use match instead of split with this simpler regular expression:

.*?(?:<=|>=|!=|=|<|>)
link|improve this answer
1  
+1 for the match suggestion -- example to complete answer? – pst Nov 11 '11 at 22:16
feedback

Your Answer

 
or
required, but never shown

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