Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java - convert array to sentence

I have following method:

public static void sentence(String sen)
{

    String[] array = sen.split(" ");
    String[] five = Arrays.copyOfRange(Array, 0, 5);

    if (Array.length < 6)
        System.out.println(sen);
    else
        System.out.print(Arrays.toString(five));
}

As an argument I enter a sentence. If the sentence is longer than 5 words I only want the first 5 words to be printed out. What happens is that the printout when sen > 5 looks something like:

[word1, word2, word3, word4, word5]

What I want it to look like is:

word1 word2 word3 word4 word5

Any suggestion on how to convert the array to a normal sentence format as in the latter example?

like image 825
Mongzyy Avatar asked Aug 24 '26 05:08

Mongzyy


2 Answers

If you are using Java 8, you can use String.join String.join:

public static void sentence(String sen) {
    String[] array = sen.split(" ");
    String[] five = Arrays.copyOfRange(Array, 0, 5);

    if (Array.length < 6)
        System.out.println(sen);
    else
        System.out.print(String.join(" ",five));
}
like image 198
David Tanzer Avatar answered Aug 26 '26 22:08

David Tanzer


From the way you asked the question, it seems your problem is with joining the words. You can have a look at this question for that: https://stackoverflow.com/a/22474764/967748
Other answers here work as well.

Some minor things to note:

To optimise slightly, you could use the optional limit parameter to String.split. So you would have

String[] array = sen.split(" ", 6); //five words + "all the rest" string

You could also avoid unnecessary copying, by bringing the String[] five = ... statement inside the if. (Or removing that logic entirely)

ps: I believe the guard in the if statement should be lowercase array

like image 21
Anly Avatar answered Aug 26 '26 22:08

Anly



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!