JavaScript - Strip a Character From a Certain String

In this tutorial we will create a Strip a Character From a Certain String using JavaScript. This code will automatically remove a character from the string when user click the button. The code use onclick() to call a function that string/remove a string from a certain position within the string using dot notation replace() with a pattern of a RegExp for accurate result. You can apply this script to your code to make your transaction faster, it is a user-friendly program feel free to modify it. We will use JavaScript to add some new feature to the website interface by actually written into an HTML page. It is what gives your page a different interactive elements and animation that engage a user.

Getting Started:

This is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.

The Main Interface

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.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.         <head>
  4.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1" />
  5.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6.         </head>
  7.         <nav class="navbar navbar-default">
  8.                 <div class="container-fluid">
  9.                         <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  10.                 </div>
  11.         </nav>
  12.         <div class="col-md-3"></div>
  13.         <div class="col-md-6 well">
  14.                 <h3 class="text-primary">JavaScript - Strip a Character From a Certain String</h3>
  15.                 <hr style="border-top:1px dotted #ccc;"/>
  16.                 <div class="col-md-4">
  17.                         <form>
  18.                                 <div class="form-group">
  19.                                         <label>Enter a Character</label>
  20.                                         <input type="text" id="character"/>
  21.                                 </div>
  22.                                 <center><button type="button" onclick="removeChar();" class="btn btn-primary">Remove</button></center>
  23.                         </form>
  24.                 </div>
  25.                 <div class="col-md-8">
  26.                         <p id="string">Once upon a time, there was a little girl named Goldilocks.  She  went for a walk in the forest.  Pretty soon, she came upon a house.  She knocked and, when no one answered, she walked right in.</p>
  27.                 </div>
  28.         </div>
  29. </body>
  30. <script src="js/script.js"></script>
  31. </html>

Creating the Script

This code contains the script of the application. This code will strip a character when the button is clicked. 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 directory
  1. var newString = "";
  2.  
  3. function removeChar(){
  4.         var string = document.getElementById('string').innerText;
  5.         var character = document.getElementById('character');
  6.         var remove = character.value;
  7.  
  8.         if(character.value == ""){
  9.                 alert("Please enter something first!");
  10.         }else{
  11.                 if(newString == ""){
  12.                         newString = string.replace(new RegExp(remove, 'g'), "");
  13.                 }else{
  14.                         newString = newString.replace(new RegExp(remove, 'g'), "");
  15.                 }
  16.                
  17.                 document.getElementById('string').innerHTML = newString;
  18.                
  19.                 character.value = "";
  20.         }
  21. }
There you have it we successfully created a Strip a Character From a Certain String 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!

Add new comment