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 wanting to (in Java) find any substrings in a string which start with say aba and end in say aca, where there is one or more non-whitespace chars between them.

For example" blingblangabablahacablingblang would find the substring abablahaca.

Then I want to replace each of those substrings, modifying the start to just b and the end to ca, but leaving the internal blah as it was.

For example" blingblangabablahacablingblang would be changed to blingblangbblahcablingblang.

Is there some way I can do this using String.replaceAll() ? There will be many instances within the original string to change.

Thanks for your help.

share|improve this question

5 Answers

up vote 2 down vote accepted

You could try:

myString.replaceAll("aba(\\w*?)aca", "b$1ca") // would also match abaaca, without blah in the middle

or

myString.replaceAll("aba(\\w+?)aca", "b$1ca") // match onlu if there is a char between aba and aca
share|improve this answer
Of course, in actual Java you had to double the backslashes. – musiKk Jul 21 '10 at 6:46
Thanks Mikael (and musikk). Quick, elegant, and almost perfect answer - but it gave me what I was after - just had to use \\S+? instead of \\w+? and it worked like a dream. +1 and tick just as soon as I get enough reputation points! – Drew Jul 21 '10 at 14:48
@musikk Added the double slosh. That's what I get for never having compiled a java program in my life ;) – Mikael Svenson Jul 21 '10 at 19:52

I don't know about the Java, but the regex should simply replace 'aba(.+?)aca' with 'b$1ca'.

share|improve this answer
Thanks Thom - great suggestion too - yours and Mikael's suggestion of the group and referencing it again with $1 was what I needed. – Drew Jul 21 '10 at 14:53
This regex also matches whitespace between the aba and aca, and the question specifies "where there is one or more non-whitespace chars between them" – Stephen P Jul 21 '10 at 20:30

If it is guaranteed that both aba and aca are unique within the given character sequence, then you can use the good old String#replace instead of regular expressions:

String result = original.replace("aba","b").replace("aca", "ca");
share|improve this answer
On top of that it must be guaranteed that they only appear in the desired order. – musiKk Jul 21 '10 at 7:57

Whats wrong with a simple if string.startsWith() and string.endsWith() and then replace the substring less then start and end and then rebuild the new string ?

share|improve this answer

Try this pattern: aba[a-z]*aca

Pattern p = Pattern.compile("aba[a-z]*aca");
Matcher m = p.matcher("blingblangabablahacablingblang");
while (m.find())
   System.out.println(">" + m.group() + "<");
share|improve this answer
This will (might) match the interesting sequence but the answer misses a solution for replacing prefix and postfix. – Andreas_D Jul 21 '10 at 6:43
Also since it is greedy it matches the largest sequence starting with abc and ending with aca. This may or may not be desired by the OP. – musiKk Jul 21 '10 at 6:49

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.