1
1
---
2
2
title: "isLowerCase()"
3
3
categories: [ "Functions" ]
4
- subCategories: [ "Characters " ]
4
+ subCategories: [ "Caracteres " ]
5
5
---
6
6
7
7
:source-highlighter: pygments
@@ -17,25 +17,25 @@ subCategories: [ "Characters" ]
17
17
--
18
18
19
19
[float]
20
- === Description
21
- Analyse if a char is lower case (that is a letter in lower case ). Returns true if thisChar contains a letter in lower case .
20
+ === Descrição
21
+ Analisa se uma caractere é minúsculo (isto é, uma letra minúscula ). Retorna true se thisChar contém uma letra minúscula .
22
22
[%hardbreaks]
23
23
24
24
25
25
[float]
26
- === Syntax
26
+ === Sintaxe
27
27
[source,arduino]
28
28
----
29
29
`isLowerCase(thisChar)`
30
30
----
31
31
32
32
[float]
33
- === Parameters
34
- `thisChar`: variable . *Allowed data types :* char
33
+ === Parâmetros
34
+ `thisChar`: variável . *Tipos de dados permitidos :* char
35
35
36
36
[float]
37
- === Returns
38
- `true`: if thisChar is lower case .
37
+ === Retorna
38
+ `true`: se thisChar é minúsculo .
39
39
40
40
--
41
41
// OVERVIEW SECTION ENDS
@@ -47,11 +47,11 @@ Analyse if a char is lower case (that is a letter in lower case). Returns true i
47
47
--
48
48
49
49
[float]
50
- === Example Code
50
+ === Código de Exemplo
51
51
52
52
[source,arduino]
53
53
----
54
- if (isLowerCase(this)) // tests if this is a letter
54
+ if (isLowerCase(this)) // testa se this é uma letra minúscula
55
55
{
56
56
Serial.println("The character is lower case");
57
57
}
71
71
--
72
72
73
73
[float]
74
- === See also
74
+ === Ver Também
75
75
76
76
[role="language"]
77
- * #LANGUAGE # link:../../../variables/data-types/char[char]
78
- * #LANGUAGE # link:../../../structure/control-structure/if[if (conditional operators )]
79
- * #LANGUAGE # link:../../../structure/control-structure/while[while (conditional operators )]
80
- * #LANGUAGE # link:../../communication/serial/read[read()]
77
+ * #LINGUAGEM # link:../../../variables/data-types/char[char]
78
+ * #LINGUAGEM # link:../../../structure/control-structure/if[if (operadores condicionais )]
79
+ * #LINGUAGEM # link:../../../structure/control-structure/while[while (operadores condicionais )]
80
+ * #LINGUAGEM # link:../../communication/serial/read[read()]
81
81
82
82
--
83
- // SEE ALSO SECTION ENDS
83
+ // SEE ALSO SECTION ENDS
0 commit comments