If I have a string such as one of the following:
AlphaSuffix
BravoSuffix
CharlieSuffix
DeltaSuffix
What is the most concise Java syntax to transform AlphaSuffix into Alpha into BravoSuffix into Bravo?
|
|
Use a simple regexp to delete the suffix:
|
|||
|
|
|
Chop it off.
To make it even more concise, create a utility method.
In the utility method, I've added a check to see if the suffix is actually at the end of the Test:
Gives:
|
|||||
|
|
if suffixes are all different/unkown you can use
|
|||
|
|