I got a problem using Rexexp in Java. The example code writes out ABC_012_suffix_suffix, I was expecting it to output ABC_012_suffix
ABC_012_suffix_suffix
ABC_012_suffix
If you just want to add "_suffix" to your input why don't you just do:
String result = "ABC_012" + "_suffix";
?