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

100
Vistas
Find specific word between tag start and end

I need to find a word this within <template> and </template>:

I tried <template>([this])*?<\/template> but it doesn't seem to work.

https://regex101.com/r/VmGESa/1

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

0

You do not need the multiline m flag and . doesn't match linebreaks so you have to account for that.

E.g.

<template>(?:.|\r|\n)*?(this)(?:.|\r|\n)*?<\/template>

https://regex101.com/r/krkP9d/1

about 4 years ago · Juan Pablo Isaza Denunciar

0

Your regular expression is matching strings that

  • are starting with <template>,
  • followed by an arbitrary combination of the characters t, h, i or s with arbitrary length, e.g., thssiththissiththhtht would be matched by ([this])*,
  • are ending with </template>,

Does this solution work for you?

<template>(?:.|\n|\r)*(this)(?:.|\n|\r)*<\/template>

.* matches an arbitrary number of arbitrary characters, except for new lines. So, I added \n and \r with the OR operator |. (?:...) means, it's a non-capturing group, i.e., when asking for groups, this group won't show up.

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