I am using the String split method and I want to have the last element. The size of the Array can change.
Example:
String one = \"Dü
You can use the StringUtils class in Apache Commons:
StringUtils.substringAfterLast(one, "-");