Core Java

Java String to String Array Conversion Examples

A quick and practical guide on how to convert String to String Array in differnet ways in java.

1. Overview

In this article, you’ll learn how to convert String to String Array in java with example programs.

Let us learn the different ways to do the conversion into a string array. from a string value.

2.  Using the split() method

String api is added with split() method which takes the delimiter as input and the string will be split based on the given delimiter. Finally, it returns each split string as in the form of String[] array.

In the previous article, we’ve seen in-depth about how to split a string using the split() method with different delimiters.

Look at the below program and passed the empty string “” to the split() method. 

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
package com.javaprogramto.programs.conversions.string;
 
public class StringtoStringArraySplit {
 
    public static void main(String[] args) {
 
        //  input string
        String input = "javaprogramto.com";
         
        // spliting string into string array using  split() method.
        String[] stringArray = input.split("");
         
        // printing the values of string array
        for (String string : stringArray) {
            System.out.println(string);
        }
    }
 
}

Output:

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
j
a
v
a
p
r
o
g
r
a
m
t
o
.
c
o
m

input.split(“”) method returns the string “javaprogramto.com” into string[] array and stores the result in the stringArray. Use the forEach loop to iterate and print the values of the String array.

Now, converted string array length and original string lengths should be the same. let us check now.

1
2
System.out.println(stringArray.length);
System.out.println(input.length());

Output:

1
2
17
17

3. Using Regular Expression

Next, Look at the second approach using regular expressions which simplifies the lots code for complexe validations such as validations of the email address and phone numbers.

Regular Expression Examples on removing the vowels from string and checking string is number.

Again need to use the split() method with the regular expression as below.

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.javaprogramto.programs.conversions.string;
 
public class StringtoStringArraySplitRegularExpression {
 
    public static void main(String[] args) {
 
        //  input string
        String input = "hello geek";
         
        // splitting string into string array using  split() method with regular expression.
        String[] stringArray = input.split("(?!^)");
         
        // printing the values of string array
        for (String string : stringArray) {
            System.out.println(string);
        }
         
        System.out.println(stringArray.length);
        System.out.println(input.length());
         
    }
 
}

Output:

01
02
03
04
05
06
07
08
09
10
11
12
h
e
l
l
o
  
g
e
e
k
10
10

4. Using Guava

Guava API also has builtin support for string array conversions as below.

But when you are working with Guava there are many steps involved here.

4.1 First converts string to char[] array using toCharArray() method.

4.2. Chars.asList() method to convert char array into List.

4.3 Finally, it transforms into String array with List.transform() and toArray() methods.

These procedure is little bit java 8 concepts are required to understand.

Here is the full code example.

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.javaprogramto.programs.conversions.string;
 
import org.apache.commons.lang3.ArrayUtils;
 
import com.google.common.base.Functions;
import com.google.common.collect.Lists;
import com.google.common.primitives.Chars;
 
public class StringtoStringArrayGuava {
 
    public static void main(String[] args) {
 
        // input string
        String input = "Using Guava";
 
        // spliting string into string array using split() method.
        String[] stringArray = Lists.transform(Chars.asList(input.toCharArray()), Functions.toStringFunction())
                .toArray(ArrayUtils.EMPTY_STRING_ARRAY);
 
        // printing the values of string array
        for (String string : stringArray) {
            System.out.println(string);
        }
 
        System.out.println(stringArray.length);
        System.out.println(input.length());
 
    }
 
}

Output:

01
02
03
04
05
06
07
08
09
10
11
12
13
U
s
i
n
g
  
G
u
a
v
a
11
11

5. Conclusion

In this article, you’ve seen how to convert string to string array examples using java builtin split(), regular expression, and finally with Guava api methods.

As usual, all examples are over GitHub.

java String split() API

Regular Expressions

Guava

Published on Java Code Geeks with permission by Venkatesh Nukala, partner at our JCG program. See the original article here: Java String to String Array Conversion Examples

Opinions expressed by Java Code Geeks contributors are their own.

Venkatesh Nukala

Venkatesh Nukala is a Software Engineer working for Online Payments Industry Leading company. In my free time, I would love to spend time with family and write articles on technical blogs. More on JavaProgramTo.com
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button