ItSolutionStuff.com

How to Convert String to Array in Vue JS?

By Hardik Savani • July 5, 2023
Vue.JS

Today i will show you how to convert string to array using split() in vue js. i will give simple example of split string with space, comma, semicolon etc in vuejs.

If you worked with javascript then you know split() and how it use. The split() method is used to split the string into an array of the substring and returns a new collection array. you can see bellow following syntax:

myArray.split(separator);

bellow i gave you simple example of convert string into an array with space. i will also show you output of array, so you can understand how it works.

Example:

<!DOCTYPE html>

<html>

<head>

<title>Vue JS Convert String to Array | Vue JS Split String Example - ItSolutionStuff.com</title>

<script src="https://cdn.jsdelivr.net/npm/vue"></script>

</head>

<body>

<div id="app">

<p>String : {{ myString }}</p>

<p>Array : {{myResult}}</p>

<button @click="clickFunction()">Click Me</button>

</div>

<script type="text/javascript">

var app = new Vue({

el: '#app',

data: {

myString: "This is ItSolutionStuff.com" ,

myResult: ''

},

methods:{

clickFunction: function () {

this.myResult = this.myString.split(" ");

}

}

})

</script>

</body>

</html>

Output:

String : This is ItSolutionStuff.com

Array : [ "This", "is", "ItSolutionStuff.com" ]

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Use Ternary Operator in Vue JS?

Read Now →

How to Define Global Variables in Vue JS?

Read Now →

Vue JS Get Array Length or Object Length Example

Read Now →

Vue JS Call a Function On Load Example

Read Now →

How to Get Current Date and Time in Vue JS?

Read Now →

Laravel Vue Datatables Component Example

Read Now →

How to use datepicker in vuejs?

Read Now →

Vue JS MultiSelect Dropdown Example

Read Now →

How to Change Date Format using Moment in Vue JS?

Read Now →

Vue JS Toggle Switch Button Example

Read Now →

Vue Toastr Notifications Example Code

Read Now →

Laravel Vue JS Infinite Scroll Example with Demo

Read Now →

Vue JS Scroll to Element in Div using Vue-scrollto Example

Read Now →