lowercase string code example

Example 1: convert string to lowercase in php

/* strtolower() function converts  string to lowercase. */
<?php
echo strtolower("Hello WORLD 123");
?>
// Output:hello world 123

Example 2: javascript lowercase string

var str = "My Big Boy!"
var res = str.toLowerCase(); //res is "my big boy!"

Example 3: convert string to lowercase in php

/* There is a function in php wich convert all paragraph or 
string to lowercase*/
<?php
echo strtolower("Hey Samy, HAVE YOU CHECK THE LATEST MOVIE.");


// Output: hey samy, have you check the latest movie.
?>

Example 4: javascript lowercase string

var str = "ExaMple";
var res = str.toLowerCase();
output res -> "example"

Example 5: python lower

string.lower()

Example 6: string.lower

string.lower() -- Finds a uppercase on the string argument then sets it back to lowercase

Tags:

Php Example