ItSolutionStuff.com

How to Remove Comma from String in JQuery?

By Hardik Savani • June 14, 2023
jQuery

Sometimes, we require to remove comma, semicolon, colon etc from string in your jquery code At that time you can simply remove comma using js replace(). Jquery replace() through we can replace comma into empty string that way comma will be remove from jquery string.

In this example you can see how it works. It small thing but helpful because this you can also delete semicolon ,colon ,dot etc. So, let's try bellow example and see..

Example:

<html lang="en">

<head>

<title>Jquery remove comma from string</title>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>

</head>

<body>


<script type="text/javascript">


$(document).ready(function() {


var myStr = "Hi, Hardik. How are you?";

myStr = myStr.replace(/,/g, "");

alert(myStr);


});


</script>


</body>

</html>

Tags: jQuery
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 Download File using JQuery?

Read Now →

Jquery Moment Convert String to Date Example

Read Now →

JQuery Moment JS Subtract Hours to Datetime Example

Read Now →

JQuery Disable Submit Button on Click to Prevent Multiple Form Submits

Read Now →

How to Remove Empty or Null Values from Array in JQuery?

Read Now →

How to Disable Right Click Menu using JQuery?

Read Now →

How to Remove All Whitespace from String in JQuery?

Read Now →

File Upload with Progress Bar using jQuery Ajax and PHP Example

Read Now →

How to Check Image Loaded or Not in JQuery?

Read Now →

How to Remove undefined Value from Array in JQuery?

Read Now →

Automatically Scroll to Bottom of Div JQuery Example

Read Now →

Check and Uncheck All Checkbox using JQuery Example

Read Now →

How to Allow Only One Checkbox Checked at a Time in JQuery?

Read Now →

How to Check Object is Empty or Not in JQuery?

Read Now →

Autocomplete with Images and Custom HTML Code in Jquery UI?

Read Now →