“Obtenga una matriz de String JavaScript” Código de respuesta

Obtenga una matriz de String JavaScript

const string = 'hi there';

const usingSplit = string.split('');
const usingSpread = [...string];
const usingArrayFrom = Array.from(string);
const usingObjectAssign = Object.assign([], string);

// Result
// [ 'h', 'i', ' ', 't', 'h', 'e', 'r', 'e' ]
// From https://www.samanthaming.com/tidbits/83-4-ways-to-convert-string-to-character-array/
DevShot

matriz de javascript desde cadena

// If you want to split on a specific character in a string:
const stringToSplit = '01-02-2020';
console.log(stringToSplit.split('-')); 
// ["01", "02", "2020"]

// If you want to split every character:
const stringToSplit = '01-02-2020';
console.log(Array.from(stringToSplit));
// ["0", "1", "-", "0", "2", "-", "2", "0", "2", "0"]
RWL_Dittrich

Respuestas similares a “Obtenga una matriz de String JavaScript”

Preguntas similares a “Obtenga una matriz de String JavaScript”

Más respuestas relacionadas con “Obtenga una matriz de String JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código