File tree Expand file tree Collapse file tree 1 file changed +16
-16
lines changed
Language/Functions/Characters Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -16,25 +16,25 @@ subCategories: [ "Characters" ]
16
16
--
17
17
18
18
[float]
19
- === Description
20
- Analyse if a char is alpha (that is a letter). Returns true if thisChar contains a letter.
19
+ === Descrizione
20
+ Controlla se un char è una lettera dell'alfabeto. Restituisce true se thisChar contiene una lettera.
21
21
[%hardbreaks]
22
22
23
23
24
24
[float]
25
- === Syntax
25
+ === Sintassi
26
26
[source,arduino]
27
27
----
28
28
isAlpha(thisChar)
29
29
----
30
30
31
31
[float]
32
- === Parameters
33
- `thisChar`: variable . *Allowed data types :* char
32
+ === Parametri
33
+ `thisChar`: variabile . *Tipi di dati permessi :* char
34
34
35
35
[float]
36
- === Returns
37
- `true`: if thisChar is alpha .
36
+ === Restituisce
37
+ `true`: se thisChar contiene una lettera dell'alfabeto .
38
38
39
39
--
40
40
// OVERVIEW SECTION ENDS
@@ -46,17 +46,17 @@ isAlpha(thisChar)
46
46
--
47
47
48
48
[float]
49
- === Example Code
49
+ === Codice di Esempio
50
50
51
51
[source,arduino]
52
52
----
53
- if (isAlpha(this)) // tests if this is a letter
53
+ if (isAlpha(this)) // controlla se this è una lettera
54
54
{
55
- Serial.println("The character is a letter ");
55
+ Serial.println("Questo carattere è una lettera ");
56
56
}
57
57
else
58
58
{
59
- Serial.println("The character is not a letter ");
59
+ Serial.println("Questo carattere non è una lettera ");
60
60
}
61
61
62
62
----
70
70
--
71
71
72
72
[float]
73
- === See also
73
+ === Vedi anche
74
74
75
75
[role="language"]
76
- * #LANGUAGE # link:../../../variables/data-types/char[char]
77
- * #LANGUAGE # link:../../../structure/control-structure/if[if (conditional operators)]
78
- * #LANGUAGE # link:../../../structure/control-structure/while[while (conditional operators)]
79
- * #LANGUAGE # link:../../communication/serial/read[read()]
76
+ * #LINGUAGGIO # link:../../../variables/data-types/char[char]
77
+ * #LINGUAGGIO # link:../../../structure/control-structure/if[if (conditional operators)]
78
+ * #LINGUAGGIO # link:../../../structure/control-structure/while[while (conditional operators)]
79
+ * #LINGUAGGIO # link:../../communication/serial/read[read()]
80
80
81
81
--
82
82
// SEE ALSO SECTION ENDS
You can’t perform that action at this time.
0 commit comments