Skip to content

Commit 2adf9e9

Browse files
authored
traduzione it
tradotto dalla versione en
1 parent 2a1abdc commit 2adf9e9

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

Language/Functions/Characters/isAlpha.adoc

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,25 @@ subCategories: [ "Characters" ]
1616
--
1717

1818
[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.
2121
[%hardbreaks]
2222

2323

2424
[float]
25-
=== Syntax
25+
=== Sintassi
2626
[source,arduino]
2727
----
2828
isAlpha(thisChar)
2929
----
3030

3131
[float]
32-
=== Parameters
33-
`thisChar`: variable. *Allowed data types:* char
32+
=== Parametri
33+
`thisChar`: variabile. *Tipi di dati permessi:* char
3434

3535
[float]
36-
=== Returns
37-
`true`: if thisChar is alpha.
36+
=== Restituisce
37+
`true`: se thisChar contiene una lettera dell'alfabeto.
3838

3939
--
4040
// OVERVIEW SECTION ENDS
@@ -46,17 +46,17 @@ isAlpha(thisChar)
4646
--
4747

4848
[float]
49-
=== Example Code
49+
=== Codice di Esempio
5050

5151
[source,arduino]
5252
----
53-
if (isAlpha(this)) // tests if this is a letter
53+
if (isAlpha(this)) // controlla se this è una lettera
5454
{
55-
Serial.println("The character is a letter");
55+
Serial.println("Questo carattere è una lettera");
5656
}
5757
else
5858
{
59-
Serial.println("The character is not a letter");
59+
Serial.println("Questo carattere non è una lettera");
6060
}
6161
6262
----
@@ -70,13 +70,13 @@ else
7070
--
7171

7272
[float]
73-
=== See also
73+
=== Vedi anche
7474

7575
[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()]
8080

8181
--
8282
// SEE ALSO SECTION ENDS

0 commit comments

Comments
 (0)