|
|
PHP String length counting by strlen
How to count the length of a PHP string? This function is required to check some
form validation also where any input field is entered blank. PHP function strlen
does this work for us and returns number of characters inside the string
including blank space. If you want blank space to be removed then you can apply
string replace function str_replace to the string before applying strlen.
<?Php
$string="This is my string";
echo "Length of the string = ".strlen($string);
?>
The output of above code is 17
Length of the string after removing blank spaces
We will use str_replace function to search and replace all occurrences of blank space.
<?Php
$string="This is my string";
$string=str_replace(" ","",$string);
echo "Length of the string = ".strlen($string);
?>
The output of above code is 14
Maximum and minium length of string
While checking the userid of signup script we can use this to findout the length of the string. Here our string should be of minimum 6 and maximum 15 character length.
$string="abcdababcdababcs"; // Add or remove string chars to check output
if(strlen($string) >=6 and strlen($string) <=15)
{ echo "<br><br> length is wihtin 6 and 15 "; }
else { echo "<br><br> Not required length ";}
|
| |
| | elyn espanola | 05-02-2012 |
|---|
what are the php codes of counting different letters from 2 words that given by the users and each word will be equal to the number of letters that are different to the other words.
for example:
cat=1
bratt=2
since in the word cat,there is no letter c in the other word so it equals to 1,
then in the second word, there is no letter b and r in the first word so it equals to 2,tnx,,i need ur ideas. | | dickson | 07-12-2012 |
|---|
| nice stuff. home 4 the best. tank |
|
|
|
|
|
|