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

76
Vistas
JS Regex match word starting with character but ignore if it's double

So I have this regular exp :: /(?:^|\W)\£(\w+)(?!\w)/g

This is meant to match words following the character £ . ie; if you type Something £here it will match £here .

However, if you type ££here I don't want it to be matched, however, i'm unsure how to match £ starting but ignore if it's ££.

Is there guidance on how to achieve this?

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

0

You can add £ to \W:

/(?:^|[^\w£])£(\w+)/g

Actually, (?!\w) is redundant here (as after a word char, there is no more word chars) and you can remove it safely.

See the regex demo. Details:

  • (?:^|[^\w£]) - start of string or any single char other than a word and a £ char
  • £ - a literal char
  • (\w+) - Group 1: one or more word chars.
about 4 years ago · Juan Pablo Isaza Denunciar

0

If you also don't want to match $£here

(?<!\S)£(\w+)

Explanation

  • (?<!\S) Assert a whitespace boundary to the left
  • £ Match literally
  • (\w+) Capture 1+ word characters in group 1

See a regex101 demo.


If a lookbehind is not supported:

(?:^|\s)£(\w+)

See another regex101 demo.

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