Framework (A-Z)

Referencia para la versión de Wiring 1.0 Build 0100+. Si tiene una versión previa, use la referencia incluida con su software. Si encuentra errores o tiene comentarios, no dude en contactarnos.

Clase

ConstantString

Nombre

length()

Ejemplos
// ...

  ConstantString big_string = Constant(
  "Stately, plump Buck Mulligan came from the stairhead, bearing a bowl ofn"
    "lather on which a mirror and a razor lay crossed. A yellow dressinggown,n"
    "ungirdled, was sustained gently behind him on the mild morning air. Hen"
    "held the bowl aloft and intoned:n"
    "--_Introibo ad altare Dei_.n"
    "Halted, he peered down the dark winding stairs and called out coarsely:n"
    "--Come up, Kinch! Come up, you fearful jesuit!n"
    "Solemnly he came forward and mounted the round gunrest. He faced aboutn"
    "and blessed gravely thrice the tower, the surrounding land and then"
    "awaking mountains. Then, catching sight of Stephen Dedalus, he bentn"
    "towards him and made rapid crosses in the air, gurgling in his throatn"
    "and shaking his head. Stephen Dedalus, displeased and sleepy, leanedn"
    "his arms on the top of the staircase and looked coldly at the shakingn"
    "gurgling face that blessed him, equine in its length, and at the lightn"
    "untonsured hair, grained and hued like pale oak.n");

  Serial.println(Constant("The big string is, quote:"));
  Serial.println(big_string);
	
// ...
Descripción Retorna el número total de caracteres incluidos en el string constante como un número entero.
Sintaxis
length()
Retorna int: la longitud del ConstantString
Uso Application
Updated on July 07, 2011 11:12:43pm PDT

Creative Commons License