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

319
Views
Hacer coincidir una oración completa que contiene palabras, incluso si la oración abarca varias líneas

Intentar hacer coincidir la oración completa de un documento que contiene ciertas palabras, incluso si la oración ocupa varias líneas.

Mis intentos actuales solo capturan la oración si no se extiende a las siguientes líneas.

 ^.*\b(dog|cat|bird)\b.*\.

Utilizando ECMAScript.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Cuando no se esperan abreviaturas en la entrada, use

 /\b[^?!.]*?\b(dog|cat|bird)\b[^?!.]*[.?!]/gi

Ver prueba de expresiones regulares .

EXPLICACIÓN

 -------------------------------------------------------------------------------- \b the boundary between a word char (\w) and something that is not a word char -------------------------------------------------------------------------------- [^?!.]*? any character except: '?', '!', '.' (0 or more times (matching the least amount possible)) -------------------------------------------------------------------------------- \b the boundary between a word char (\w) and something that is not a word char -------------------------------------------------------------------------------- ( group and capture to \1: -------------------------------------------------------------------------------- dog 'dog' -------------------------------------------------------------------------------- | OR -------------------------------------------------------------------------------- cat 'cat' -------------------------------------------------------------------------------- | OR -------------------------------------------------------------------------------- bird 'bird' -------------------------------------------------------------------------------- ) end of \1 -------------------------------------------------------------------------------- \b the boundary between a word char (\w) and something that is not a word char -------------------------------------------------------------------------------- [^?!.]* any character except: '?', '!', '.' (0 or more times (matching the most amount possible)) -------------------------------------------------------------------------------- [.?!] any character of: '.', '?', '!'
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!