String()

Descripción

La clase String, que forma parte del núcleo partir de la versión 0019, le permite usar y manipular cadenas de texto en formas más complejas que character arrays. Puede concatenar cadenas, anexar a eallas, buscar charAt() y reemplazar subcadenas, y mucho más. Se requiere más memoria que una simple matriz de caracteres, pero también es más útil.

Como referencia, las matrices de caracteres se conocen como string con s minúscula, y las instancias de la clase String se denominan cadenas con S mayúscula . Tenga en cuenta que, las constantes de cadena especificadas con "comillas dobles" son tratadas como arrays de char, no casos de la clase String.

Sintaxis

String(val); String(val, base); String(val, decimalPlaces);

Parámetros

  • val: a variable to format as a String. Allowed data types: string, char, byte, int, long, unsigned int, unsigned long, float, double.
  • base: (optional) the base in which to format an integral value.
  • decimalPlaces: only if val is float or double. The desired decimal places.

Retornos

  • An instance of the String class.

Ejemplo

All of the following are valid declarations for Strings.

String stringOne = "Hello String"; // using a constant String String stringOne = String('a'); // converting a constant char into a String String stringTwo = String("This is a string"); // converting a constant string into a String object String stringOne = String(stringTwo + " with more"); // concatenating two strings String stringOne = String(13); // using a constant integer String stringOne = String(analogRead(0), DEC); // using an int and a base String stringOne = String(45, HEX); // using an int and a base (hexadecimal) String stringOne = String(255, BIN); // using an int and a base (binary) String stringOne = String(millis(), DEC); // using a long and a base String stringOne = String(5.698, 3); // using a float and the decimal places

ARDUINO BUY RECOMMENDATION

Arduino UNO R3
Arduino Starter Kit
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.

※ OUR MESSAGES