-
Notifications
You must be signed in to change notification settings - Fork 4
/
strings.php
51 lines (42 loc) · 863 Bytes
/
strings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
$texto = 'O rato roeu a roupa do rei de Roma';
// contagem
echo strlen($texto);
echo '<br>';
echo substr_count($texto, 'r');
echo '<br><hr><br>';
// localização
echo substr($texto, 2, 4);
echo '<br>';
echo strpos($texto, 'r');
echo '<br>';
echo strpos($texto, 'R');
echo '<br>';
echo strrpos($texto, 'R');
echo '<br>';
echo strrpos($texto, 'r');
echo '<br>';
echo stripos($texto, 'R');
echo '<br>';
echo strripos($texto, 'r');
echo '<br><hr><br>';
// substitução
echo str_replace(' ', '', $texto);
echo '<br>';
echo str_replace('r', '$', $texto);
echo '<br>';
echo str_ireplace('r', '$', $texto);
echo '<br><hr><br>';
// modificação
echo rtrim($texto);
echo '<br>';
echo ltrim($texto);
echo '<br>';
echo trim($texto);
echo '<br>';
echo strtoupper($texto);
echo '<br>';
echo strtolower($texto);
echo '<br>';
echo ucfirst($texto);
echo '<br>';