Reputation: 2519
I am working on a BB application in which I am getting a long String from server. Now I want to convert that string in to String Array of words present in the String, so that i can compare the complete Array elements one by one with my hard coded fields and can display them for user.
Please let me know the with your useful suggestion.
Upvotes: 0
Views: 195
Reputation: 24124
The split()
is not available for Java 1.3 (CLDC 1.1).
Did you already look at net.rim.device.api.util.StringUtilities#stringToWords
?
Upvotes: 1