Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

169
Vistas
How to split string with character \ - Javascript

I want to split a string into an array of letters, but I have a problem with the special character \ .

The code:

let s = '\op*Bw'.split('');

But I got this result ['o', 'p', '*', 'B', 'w'], that is not correct because I want the \ character too in the array.

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

Backslashes '\' escape the next character in the sequence. If you need the '\' in the string, your string will need to look like '\\op*Bw'

let s = '\\op*Bw'.split('');
console.log(s) // ['\', 'o', 'p', '*', 'B', 'w']
about 4 years ago · Juan Pablo Isaza Denunciar

0

You can also use String.raw

String.raw`\op*Bw`.split('')
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda