Javascript - Convert String To Uppercase and Lowercase
Submitted by razormist on Thursday, August 9, 2018 - 13:29.
In this tutorial we will create a Convert String To Uppercase and Lowercase using Javascript. JavaScript is a scripting or programming language that allows you to implement complex things on web pages. It can renders web pages in an interactive and dynamic fashion. It is widely used in designing a stunning website. This code can be used as your converter to your mathematical problem. So Let's do the coding...
There you have it we successfully created a Convert String To Uppercase and Lowercase using javascript. I hope that this very simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!
Getting Started:
This is the link for the bootstrap that has been used for the layout of the calculator https://getbootstrap.com/.The Main Interface
This code contains the interface of the application. This code will render application and display the form. To create this just write these block of code inside the text editor and save this as index.html.- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
- <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
- </head>
- <body>
- <nav class="navbar navbar-default">
- <div class="container-fluid">
- </div>
- </nav>
- <div class="col-md-6 well">
- <hr style="border-top:1px dotted #ccc;"/>
- <div class="col-md-6">
- <form>
- <div class="form-group">
- <input type="text" class="form-control" id="string"/>
- </div>
- <div>
- <input type="radio" name="status" value="first"/>
- <input type="radio" name="status" value="all" style="margin-left:50px;"/>
- </div>
- <br />
- </form>
- </div>
- </div>
- </body>
- </html>
Creating the Script
This code contains the script of the application. This code will change the string format when clicked. To do this just copy write the code as shown below inside the text editor and save it as script.js.- var string = document.getElementById("string");
- function UpperCase(){
- if(GetRadio() == "all"){
- string.value = string.value.toUpperCase();
- }else if(GetRadio() == "first"){
- string.value = UpperCaseFirstLetter(string.value);
- }
- }
- function LowerCase(){
- if(GetRadio() == "all"){
- string.value = string.value.toLowerCase();
- }else if(GetRadio() == "first"){
- string.value = LowerCaseFirstLetter(string.value);
- }
- }
- function GetRadio(){
- for (var i = 0; i < document.getElementsByName('status').length; i++){
- if (document.getElementsByName('status')[i].checked)
- {
- return document.getElementsByName('status')[i].value;
- }
- }
- }
- function UpperCaseFirstLetter(string) {
- return string[0].toUpperCase() + string.slice(1);
- }
- function LowerCaseFirstLetter(string) {
- return string[0].toLowerCase() + string.slice(1);
- }
Add new comment
- 123 views