How to convert arrayList to string separated by hyphen

Naham Soft

I have String ArrayList has some elements but I need to convert it to string each element is separated from other by - this is the arrayList

List<String> items = new ArrayList<String>();
items.add("a");
items.add("b");
items.add("c");
:
:

I need to get the string like this

"a-b-c-..."

Shadow

If you are using Java 8 you can use the join function of the String class:

String result = String.join("-", items);

If you are programming for Android, Java 8 is not available. You can instead use:

String result = TextUtils.join("-", items);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to convert arrayList to string separated by hyphen

From Dev

How to match single digits and digits separated by a hyphen with string.match?

From Dev

How to convert a String to ArrayList?

From Dev

How to Convert arraylist<string> to string[]

From Dev

How to convert the comma separated string or /n separated string into list in jquery?

From Dev

Get all possible combinations for a hyphen separated string

From Dev

Make a json from string separated by hyphen arrow (->)

From Java

How to convert comma-separated String to List?

From Dev

How to convert an integer to a comma separated string

From Dev

How to convert array of Integers into comma separated string

From Dev

How to convert a , separated String to a table layout?

From Dev

How to convert a comma separated string to an array in postgresql

From Dev

How to make the controller's name hyphen "-" separated?

From Dev

How to convert ArrayList<String[]> to multidimensional array String[][]?

From Dev

How to Convert ArrayList<HashMap<String, String>> to a StringArray?

From Dev

How to create convert a comma separated string into a string array in C

From Dev

How to convert a string of coma separated characters to a string of strings with each string in single quotes and separated by comma

From Dev

How to convert a string of coma separated characters to a string of strings with each string in single quotes and separated by comma

From Dev

Remove duplicate set of strings in a hyphen separated big string

From Dev

How to get string before hyphen

From Dev

How to explode a string on a hyphen in Java?

From Dev

how to convert string of integers and Lists to arrayList

From Dev

How to convert a String of Integers to an ArrayList in Java?

From Dev

How convert String like "["412","122"]" to ArrayList

From Dev

How to convert string to Integer and add it arrayList

From Dev

How to convert ArrayList<String?> to List<CharSequence> in kotlin

From Dev

how to convert arraylist data to string array in android

From Dev

How to convert json file to ArrayList<String>

From Dev

How to convert arrayList<String> to json object

Related Related

  1. 1

    How to convert arrayList to string separated by hyphen

  2. 2

    How to match single digits and digits separated by a hyphen with string.match?

  3. 3

    How to convert a String to ArrayList?

  4. 4

    How to Convert arraylist<string> to string[]

  5. 5

    How to convert the comma separated string or /n separated string into list in jquery?

  6. 6

    Get all possible combinations for a hyphen separated string

  7. 7

    Make a json from string separated by hyphen arrow (->)

  8. 8

    How to convert comma-separated String to List?

  9. 9

    How to convert an integer to a comma separated string

  10. 10

    How to convert array of Integers into comma separated string

  11. 11

    How to convert a , separated String to a table layout?

  12. 12

    How to convert a comma separated string to an array in postgresql

  13. 13

    How to make the controller's name hyphen "-" separated?

  14. 14

    How to convert ArrayList<String[]> to multidimensional array String[][]?

  15. 15

    How to Convert ArrayList<HashMap<String, String>> to a StringArray?

  16. 16

    How to create convert a comma separated string into a string array in C

  17. 17

    How to convert a string of coma separated characters to a string of strings with each string in single quotes and separated by comma

  18. 18

    How to convert a string of coma separated characters to a string of strings with each string in single quotes and separated by comma

  19. 19

    Remove duplicate set of strings in a hyphen separated big string

  20. 20

    How to get string before hyphen

  21. 21

    How to explode a string on a hyphen in Java?

  22. 22

    how to convert string of integers and Lists to arrayList

  23. 23

    How to convert a String of Integers to an ArrayList in Java?

  24. 24

    How convert String like "["412","122"]" to ArrayList

  25. 25

    How to convert string to Integer and add it arrayList

  26. 26

    How to convert ArrayList<String?> to List<CharSequence> in kotlin

  27. 27

    how to convert arraylist data to string array in android

  28. 28

    How to convert json file to ArrayList<String>

  29. 29

    How to convert arrayList<String> to json object

HotTag

Archive