If you need to split string to array by space in javascript then i will show you how to split string into array by comma or space in javascript. javascript has split() that will help to explode string into array.
Javascript 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 javascript. so let's see bellow simple example:
Example:
<!DOCTYPE html>
<html>
<head>
<title>How to split string to array by comma using javascript? - HDTuto.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....
Do you like below Tutorials ?
- Laravel 7.x and 6.x Ajax Multiple Image Upload with Preview Example
- Laravel select with count(*) using db raw example
- PHP Laravel select with join subquery example
- PHP Laravel Ajax Form Submit Example
- How to create events for created/updated/deleted model task in Laravel 5?
- Angular JS Form Validation Example Code
- AngularJS - Confirm Password Validation Example
- Laravel Ajax Request using X-editable bootstrap Plugin Example