$.trim()
functionYou can use the jQuery $.trim()
function to remove all the spaces (including non-breaking spaces), newlines, and tabs from the beginning and end of the specified string.
However, the whitespaces in the middle of the string are preserved. The following example will show you how to remove leading and trailing whitespaces from a string of text.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Remove White Space from Strings</title>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>
$(document).ready(function(){
var myStr = $(".original").text();
var trimStr = $.trim(myStr);
$(".trimmed").html(trimStr);
});
</script>
</head>
<body>
<h3>Original String</h3>
<pre class="original"> Paragraph of text with multiple white spaces before and after. </pre>
<br>
<h3>Trimmed String</h3>
<pre class="trimmed"></pre>
</body>
</html>
Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on harsukh21@gmail.com
How to Add New Elements at the Beginning of an Array in JavaScript
Use the unshift() Method You can use...Laravel Excel Import Export with Example.
In this article, we will discuss La...Laravel 8 - Search value from Json field with Example
How to search value from JSON field lara...How to check whether a variable is set or not in PHP
Use the PHP isset() function...How to Allow Only Numeric Value in HTML Text Input Using jQuery
Use the RegExp test() Method If you w...