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

Bhanu

I am entering the String either by comma separated or by clicking on enter key .. What i want to do is , i have separate the string with either , or /n separated with respective to input.. How to do it . Can anyone help me out to solve this problem

My approach :

var str = $("#textValue").val(); { "hel,asda,asdasd,asdasd" }
var array = new Array();
array = emailString.split(',');

The above is the case when user gives input with comma separated. We dont know whether the user gives either comma separated or not.He may click on enter and give inputs. whats the solution on that scenario. Please help me out to solve this

Julien

If the comma based split gave only one element, try a new line split :

var str = $("#textValue").val();
var array = new Array();    
array = emailString.split(',');
if (array.length == 1) {
    array = emailString.split('\n');
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

How to convert comma-separated String to List?

From Dev

Convert comma separated string to a list

From Dev

Convert comma separated string to a list

From Dev

Convert comma separated List<string> to List<Int>

From Dev

Convert comma separated string to int list and validate

From Dev

How to convert Comma separated string to KeyValuePair of LIST or IEnumerable

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 comma separated string to an array in postgresql

From Dev

Convert comma separated string into a HashSet

From Dev

Convert comma separated string to datetime

From Dev

Convert comma separated string to datetime

From Dev

comma separated string to list in r

From Dev

Pass a comma separated string as a list

From Dev

Convert a list of string into a comma separated string without duplications

From Dev

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

From Dev

convert comma separated string to list without intermediate container

From Dev

Easiest way to convert list to a comma separated string by a Specific Property?

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

merge string list in a comma separated string

From Dev

How to convert a string of comma separated values into data array?

From Java

How can I convert a comma-separated string to an array?

From Dev

T-SQL How to convert comma separated string of numbers to integer

From Dev

How to Convert HashSet of Integers to Comma Separated String in Java

From Dev

how to convert rows of integers of a table to comma separated string in sql server

From Dev

How to convert a string of comma-separated values into an array

From Dev

how to convert nested array of arrays into comma separated string

From Dev

How to convert a comma separated string to separate arrays within an object?

Related Related

  1. 1

    How to convert comma-separated String to List?

  2. 2

    Convert comma separated string to a list

  3. 3

    Convert comma separated string to a list

  4. 4

    Convert comma separated List<string> to List<Int>

  5. 5

    Convert comma separated string to int list and validate

  6. 6

    How to convert Comma separated string to KeyValuePair of LIST or IEnumerable

  7. 7

    How to convert an integer to a comma separated string

  8. 8

    How to convert array of Integers into comma separated string

  9. 9

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

  10. 10

    Convert comma separated string into a HashSet

  11. 11

    Convert comma separated string to datetime

  12. 12

    Convert comma separated string to datetime

  13. 13

    comma separated string to list in r

  14. 14

    Pass a comma separated string as a list

  15. 15

    Convert a list of string into a comma separated string without duplications

  16. 16

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

  17. 17

    convert comma separated string to list without intermediate container

  18. 18

    Easiest way to convert list to a comma separated string by a Specific Property?

  19. 19

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

  20. 20

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

  21. 21

    merge string list in a comma separated string

  22. 22

    How to convert a string of comma separated values into data array?

  23. 23

    How can I convert a comma-separated string to an array?

  24. 24

    T-SQL How to convert comma separated string of numbers to integer

  25. 25

    How to Convert HashSet of Integers to Comma Separated String in Java

  26. 26

    how to convert rows of integers of a table to comma separated string in sql server

  27. 27

    How to convert a string of comma-separated values into an array

  28. 28

    how to convert nested array of arrays into comma separated string

  29. 29

    How to convert a comma separated string to separate arrays within an object?

HotTag

Archive