TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Javascript-Remove Comma from the given user's string.
Ghanashyam Nayak
Apr 30, 2020
42.9
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
This code shows you that how you can remove comma from your given string.
<!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN"
>
<html>
<head>
<title>Sample Code</title>
<script type=
"text/javascript"
>
function
DeleteComma(MyString)
{
//Replace Comma By Null....
var
afterreplace=MyString.replace(
','
,
''
);
alert(afterreplace);
}
</script>
</head>
<body bgcolor=#00ff00 alink=blue vlink=blue>
<FORM name=
"windowEvent"
>
Enter String : <input type=
"text"
name=
"txtOriginal"
/><br>
<input type=
"button"
value=
"Remove Comma"
name=
"btnRemoveComma"
onClick=
"DeleteComma(txtOriginal.value);"
/>
</FORM>
</body>
</html>
Javascript-Remove Comma from the given users string.
Next Recommended Reading
Javascript-Add commas into your given number after every three digits.