In java, which regular expression can be used to replace these, for example:
before: aaabbb after: ab
before: 14442345 after: 142345
thanks!
|
|
|
In perl
Does the trick, I assume if java has perl compatible regexps it should work too. Edit: Here is what it means
Edit: As others have pointed out, the syntax in Java would become
remember to escape the \1 |
||||
|
|
|
|||
|
|
|
match pattern (in Java/languages where \ must be escaped):
or (in languages where you can use strings which don't treat \ as escape character)
replacement:
|
||||
|
|
|
In Perl:
Example:
If Java has no
Example:
|
|||
|
|