How to split string to array by comma using jquery?
Are you need to explode string to array by comma in jquery, then i will give you solution to explode string to array by comma, space etc. we will do it using jquery split(). we will split string into array by space or comma in jquery.
The split() function is used to split a string into array of substrings, and returns the new array.
I will give you simple example for this bellow example, i created simple string with comma. then i will use split function to create an array using split function in jquery. so let's see bellow simple example:
Example:
<!DOCTYPE html>
<html>
<head>
<title>How to split string to array by comma using jquery? - ItSolutionStuff.com</title>
</head>
<body>
<script type="text/javascript">
var myString = "A,B,C,C,D,E,F,G,H";
console.log(myString.split(','));
</script>
</body>
</html>
I hope it can help you....

Hardik Savani
I'm a full-stack developer, entrepreneur and owner of Aatman Infotech. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Add/remove multiple input fields dynamically with Jquery Laravel 5.8
- How to check if key exists in json object in jquery?
- How to disable f5 refresh button using jquery?
- How to remove duplicate value from array in Jquery?
- How to change date format in jquery using moment JS ?
- How to prevent submit form on enter key except textarea in JQuery?