Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

95
Views
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 answers
Answer question

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 Report

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!