Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Sfdc i want to split a string and then rejoin it with And operator.

I split the string successfully but having an issue in rejoining it.

 String [] ideaSearchText = searchText.Split(' ');
 String spaceDelimeted = String.Join('AND',ideaSearchText ); 

Can anybody tell me how to rejoin the string array in apex.

Thanks

share|improve this question

2 Answers

up vote 7 down vote accepted

As of v24 (Spring 12), String instances do not provide a join method. You could write one yourself easily enough, but I would recommend installing the apex-commons package that includes many utility classes including StringUtils that provides exactly what you're looking for:

apex-commons on github

share|improve this answer
The problem with SF's removing join() is developers must spend precious script statements to do something that didn't use them. Given a list of 100 items to join, a few hundred statements will be required inside a loop to perform the same operation. – tggagne May 25 '12 at 17:55
That's one of the reasons that I left the platform for Ruby on Rails... – barelyknown May 25 '12 at 23:59
This is now possible in native Apex using String.join() - see my answer for full details. – doublesharp Mar 1 at 20:31

You can do this as of v26 (Winter 13) by creating a List from your String[] array and passing that to String.join().

String input = 'valueOne valueTwo valueThree';
String[] splitInput = input.split(' ');
List<String> values = new List<String>( splitInput );
String result = String.join( values, ' AND ' );

Anonymous Apex output calling System.debug(result):

21:02:32.039 (39470000)|EXECUTION_STARTED
21:02:32.039 (39485000)|CODE_UNIT_STARTED|[EXTERNAL]|execute_anonymous_apex
21:02:32.040 (40123000)|SYSTEM_CONSTRUCTOR_ENTRY|[3]|<init>()
21:02:32.040 (40157000)|SYSTEM_CONSTRUCTOR_EXIT|[3]|<init>()
21:02:32.040 (40580000)|USER_DEBUG|[5]|DEBUG|valueOne AND valueTwo AND valueThree

Salesforce API Documentation: http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_methods_system_string.htm

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.