[Vuejs]-Vue Js – removing spaces from string

5👍

It’s not working as expected because .trim function is used to remove whitespace from both sides of the string, not from in-between.

enter image description here

You can use

category.toLowerCase().split(" ").join("")

Here I’m making the letters lower case, splitting them and then joining them.

👤Duoro

2👍

You can do like this:

category.replace(/\s+/g, '').toLowerCase()

1👍

The trim method only removes spaces at the beginning of the string. What you need is replacing the spaces with nothing with the replace method using regex:

category.replace(/\s/g, "").toLowerCase();

Leave a comment