Submitted by razormist on Saturday, September 1, 2018 - 13:47.
Screenshot
Body
In this tutorial we will create a Replace Special Characters using Javascript. JavaScript is a scripting or programming language that allows you to implement complex things on web pages. It is a text-based programming language meant to run as part of a web-based application. It is an interpreted programming language that has a capabilities of Object-Oriented. So Let's do the coding...
This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
Javascript - Replace Special Characters
Strings With Special Characters
Strings Without Special Characters
Creating the Script
This code contains the script of the application.This code will remove all the special characters in the string to make the strong look good. To do this just copy and write these block of codes as shown below inside the text editor and save it as script.js inside the js folder.
var text = "Us#in$g r#ea$l co^nt#ent [email protected]$ing d%[email protected] c%an dis#$tract de#si#$g%n^ers [email protected][email protected]@n rev!iew t$e%ams al%ike aw^ay fro^m [email protected] des!ign, an#d i%nsi$st$ing on$ alwa%ys usi$ng [email protected] r$eady co%nt^e&nt c^an [email protected] a re$al d%rag o^n [email protected] des!ign pr$oc%@ess.";
document.getElementById('display').innerHTML = text;
function RemoveChar(){
var str = text.replace(/[&\/\\#,+()$~%@^'"!:*?{}]/g, '');
document.getElementById('result').innerHTML = str;
}
There you have it we successfully created a using Javascript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!