Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using the java class Pattern to match the strings in a text that start with a specific string, let's say abc, that has any text (containing any character) and that stop at the beginning of another different specified string, let's say def. How would you write this? Thanks!

share|improve this question
Post the real string you have to match. Malvolio's answer is correct for the case you said. – bourbaki Dec 24 '10 at 17:13

2 Answers

up vote 2 down vote accepted

Unless your problem is more complicated than you've explained: "abc.*def"

share|improve this answer
I already tried this, but it seems it is not doing what I need. I suppose by character the dot is not taking something like the space. I tried abc[.\s]*def but it is not working as well, I can't understand why. An example of what I need it to is to select everything inside <table...> content </table> in an HTML page. Thanks for the quick answer! – Luca Carlon Dec 24 '10 at 16:29
3  
There's nothing wrong with the regexp. Why don't you post the simplest version possible of the code so we can help you spot the error. My last two questions on StackOverflow, I canceled before I ever posted, because in writing simple cases to demonstrate the problem, I answered my own question. – Malvolio Dec 24 '10 at 16:32
Code? I'm trying the regexp with the search capability of eclipse for the moment, that I suppose should use the same interpreter. I tried this as well abc[\w|\W]*def but it is not stopping at the first def. I thought I should use the ^, but I really can't understand how to use it with a string. – Luca Carlon Dec 24 '10 at 16:37
Could you have a greedy/lazy problem? If your string is "abcxxdefxxdef", the regexp 'abc.*def' will (with most libraries) match the whole string, not just the first eight character, as you might expect. A lazy match 'abc.*?def' would stop at the first 'def'. – Malvolio Dec 24 '10 at 16:48
1  
It's not finding anything or it's not stopping? Be specific and detailed. Try it with a simple case, like abc.*?def before going on to <table>.*?</table> or whatever. Don't forget the editor might be treating the other punctuation, in the regexp or the text, specially. – Malvolio Dec 24 '10 at 17:03
show 6 more comments

as a side note to your comment, using a regex to proccess html/xml is generally a bad idea. classic explanation here

share|improve this answer
There's an old saying, "Some people, when confronted with a problem, think 'I know, I'll use regular expressions.' Now they have two problems." It's not entirely true, though it's worth thinking about. Regexp are good for searching, a bit shaky for parse. The OP has a problem in the context of an editor and probably the hammer that is regexp is the only tool he has, so like it or not, every problem will demonstrate nail-like properties. – Malvolio Dec 24 '10 at 16:52
I didn't even think that HTML isn't a regular language... Anyway, I already have an entire "framework" which was created by others to work this way, and so, if possible, it would be better for me to keep things like they are. Thanks for pointing this out though! – Luca Carlon Dec 24 '10 at 17:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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