Maison > interface Web > js tutoriel > le corps du texte

Comment obtenir la fonctionnalité Regex Lookbehind en JavaScript ?

DDD
Libérer: 2024-11-13 12:41:02
original
587 Les gens l'ont consulté

How to Achieve Regex Lookbehind Functionality in JavaScript?

Regex Lookbehind Alternative in JavaScript

Problem:

JavaScript does not offer a native method for regex lookbehinds. Consequently, the following regular expression, which functions effectively in other implementations, fails in JavaScript:

(?<!filename)\.js$
Copier après la connexion

This regex aims to match the ".js" extension at the end of a string, but only if it is not preceded by "filename.js."

Solution:

One approach to simulate a regex lookbehind in JavaScript involves employing helper functions. However, a more straightforward alternative regex achieves the desired result:

^(?:(?!filename.js$).)*.js$
Copier après la connexion

Explanation:

This regex employs a negative lookahead to verify that each character in the string does not match the expression "filename.js" followed by the end of string. Only then can that character match the regex. Below is a breakdown of the regex:

^                 # Start of string
(?:               # Try to match the following:
 (?!              # First assert that we can't match the following:
  filename.js    # filename.js
  $               # and end-of-string
 )                # End of negative lookahead
 .                # Match any character
)*                # Repeat as needed
.js              # Match .js
$                 # End of string
Copier après la connexion

Improved Solution:

A more efficient method to achieve the same result is to use the following regex:

^(?!.*filename.js$).*\.js$
Copier après la connexion

This regex asserts that the entire string must not contain "filename.js" and subsequently matches any string ending in ".js."

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal