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

I need to split a String into an array of single character Strings.

Eg, splitting "cat" would give the array "c", "a", "t"

share|improve this question
1  

6 Answers

up vote 15 down vote accepted
"cat".split("(?!^)")

This will produce

array ["c", "a", "t"]

share|improve this answer
"cat".toCharArray()

But if you need strings

"cat".split("")

Edit: which will return an empty first value.

share|improve this answer
3  
"cat".split("") would return [, c, a, t], no? You will have a extra character in your Array... – reef Mar 8 '11 at 16:48
2  
The "cat".split("") does not work as expected by Matt, you will get an extra empty String => [, c, a, t]. – reef Mar 8 '11 at 16:57
String str = "cat";
char[] cArray = str.toCharArray();
share|improve this answer
+1 but OP probably wants array of String. – Jigar Joshi Mar 8 '11 at 16:41
2  
Nitpicking, the original question asks for an array of String, not an array of Char. However it's quite easy to get an array of String from here. – dsolimano Mar 8 '11 at 16:41
Matt, do you need array of string? – Raman Mar 8 '11 at 16:42
Yeah, I already know how to get an array of chars. I can just iterate through the char array and create a string from each one though, if there's no other way. – Matt Mar 8 '11 at 23:11
How would you convert cArray back to String? – Bitmap Jun 27 '11 at 8:19

Take a look at the String class's getChars() method.

share|improve this answer
Too complicated. The other answers have much simpler solutions – Sean Patrick Floyd Mar 8 '11 at 16:45

a string are array of multichars. string foo = "baa"; foo[1] is "b" foo[2] is "a"..

share|improve this answer

Maybe you can use a for loop that goes through the String content and extract characters by characters using the charAt method.

Combined with an ArrayList<String> for example you can get your array of individual characters.

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.