Split string Apex

Use String.split(regExp, limit) method:

Documentation says

Returns a list that contains each substring of the String that is terminated by either the regular expression regExp or the end of the String.

Example:

String str = 'this-is-test-data';
List<String> res = str.split('-', 2);
System.debug(res);

Result:

15:16:58:001 USER_DEBUG [3]|DEBUG|(this, is-test-data)


One option is to use the substringBefore and substringAfter methods.

String delimiter = '-';
String input = 'this-is-test-data';
String firstSplit = input.substringBefore(delimiter); // 'this'
String lastSplits = input.substringAfter(delimiter);  // 'is-test-data'

Tags:

String

Apex