Website Development Prices

Search Blog

Saturday, January 30, 2016

Funkcije za rad sa stringovima (Functions for working with strings)

<?php

/* Pomocu funkcije trim izbacujemo beline na pocetku stringa */
echo trim("     Volim motore."), "<br>"; 

/* Koristimo funkciju substr za vadjenje podstringova */
echo substr("Volim motore.", 6, 6), "<br>";

/* Koristimo funkciju strpos za pretrazivanje stringa */
echo "\"motore\" pocinje na poziciji ", strpos("Volim motore.", "motore"), "<br>";

/* Koristimo funkciju ucfirst za konvertovanje prvog 
karaktera u stringu u veliko slovo */
echo ucfirst("volim motore."), "<br>";

/* Koristimo funkciju strlen za odredjivanje duzine stringa */
echo "\"Volim motore.\" je ", strlen("Volim motore."), " karaktera dugacak. <br>";

/* Koristimo funkciju substr_replace za zamenu podstringa
drugim stringom */
echo substr_replace("Volim motore.", "more.", 6, 7), "<br>";

/* Koristimo funkciju chr za konvertovanje ASCII koda u 
slovo (ASCII 83 = "S", ASCII 85 = "U", ASCII 90 = "Z"
 ASCII 75 = "K", ASCII 75 = "I") */
echo chr(83), chr(85), chr(90), chr(85), chr(75), chr(73), "<br>";

/* Koristimo funkciju strtoupper za konvertovanje stringa u 
veliko slovo */
echo strtoupper("Volim motore."), "<br>";

?>


Rezultat:

Volim motore.
motore
"motore" pocinje na poziciji 6
Volim motore.
"Volim motore." je 13 karaktera dugacak.
Volim more.
SUZUKI
VOLIM MOTORE.


<?php

/* With function trim we will delete the whiteness at the
beginning of the string */
echo trim("     Love motobikes."), "<br>";

/* We use function substr for extracting substrings*/
echo substr("Love motobikes.", 5, 9), "<br>";

/* We use function strpos for searching the string */
echo "\"motobikes\" starts at positions ", strpos("Love motobikes.", "motobikes"), "<br>";

/* We use function ucfirst to convert first character 
in the string to uppercase */
echo ucfirst("love motobikes."), "<br>";

/* We use function strlen to determine the length 
of the string */
echo "\"Love motobikes.\" is ", strlen("Love motobikes."), " characters long. <br>";

/* We use function substr_replace to replace substring
with the second string */
echo substr_replace("Love motobikes.", "sea.", 5, 10), "<br>";

/* We use function chr to convert the ASCII codes in
letters (ASCII 83 = "S", ASCII 85 = "U", ASCII 90 = "Z"
 ASCII 75 = "K", ASCII 75 = "I") */
echo chr(83), chr(85), chr(90), chr(85), chr(75), chr(73), "<br>";

/* We use function strtoupper to convert a string to
uppercase letter */
echo strtoupper("Love motobikes."), "<br>";

?>

Result:

Love motobikes.
motobikes
"motobikes" starts at positions 5
Love motobikes.
"Love motobikes." is 15 characters long.
Love sea.
SUZUKI
LOVE MOTOBIKES.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.