screen_rotation
Copied to Clipboard
<html> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="app"> <h1>Vue Js Remove Multiple Space Between String </h1> <p>For output see console.log message</p> <p>{{ cleanText }}</p> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { text: "This is a sentence with multiple spaces.", result:'' } }, computed: { cleanText() { console.log('String with Multiple Space: ' + this.text) this.result = this.text.replace(/\s+/g, " "); console.log('string without space: '+ this.result) }, }, }) </script> </body> </html>