reverseDelimited() is a StringUtils class that is used to reverse a string that is delimited by a specific character.
StringUtilsThe definition of StringUtils can be found in the Apache Commons Lang package, which we can add to the Maven project by adding the following dependency to the pom.xml file:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
For other versions of the
commons-langpackage, refer to the Maven Repository.
You can import the StringUtils class as follows:
import org.apache.commons.lang3.StringUtils;
public static String reverseDelimited(final String str, final char separatorChar)
final String str: The string to reverse.final char separatorChar: The delimiter character to use.This method returns the reversed string.
import org.apache.commons.lang3.StringUtils;public class Main{public static void main(String[] args) {// Example 1String string = "hello;educative;edpresso";char sep = ';';System.out.printf("StringUtils.reverseDelimited('%s', %s) = '%s'", string, sep, StringUtils.reverseDelimited(string, sep));System.out.println();// Example 2string = "hello-educative-edpresso";sep = '-';System.out.printf("StringUtils.reverseDelimited('%s', %s) = '%s'", string, sep, StringUtils.reverseDelimited(string, sep));System.out.println();}}
string - "hello;educative;edpresso"separator - ';'The method returns edpresso;educative;hello, i.e., reversing the characters separated by the delimiter.
string - "hello-educative-edpresso"separator - '-'The method returns edpresso-educative-hello, i.e., reversing the characters separated by the delimiter.
The output of the code will be as follows:
StringUtils.reverseDelimited('hello;educative;edpresso', ;) = 'edpresso;educative;hello'
StringUtils.reverseDelimited('hello-educative-edpresso', -) = 'edpresso-educative-hello'
Free Resources