javascript lowercase string
var str = "My Big Boy!"
var res = str.toLowerCase(); //res is "my big boy!"
javascript lowercase string
var str = "My Big Boy!"
var res = str.toLowerCase(); //res is "my big boy!"
convert string to lowercase in php
/* strtolower() function converts string to lowercase. */
<?php
echo strtolower("Hello WORLD 123");
?>
// Output:hello world 123
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.
?>
javascript lowercase string
var str = "ExaMple";
var res = str.toLowerCase();
output res -> "example"
string.lower
string.lower() -- Finds a uppercase on the string argument then sets it back to lowercase
lower case of string
str_lower = "A LAZY FOX";
print ("String with lower()", str_lower.lower())
print ("The orgginal string:" ,str_lower)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us