JavaScript에서 Regex Lookbehind 기능을 구현하는 방법은 무엇입니까?

DDD
풀어 주다: 2024-11-13 12:41:02
원래의
587명이 탐색했습니다.

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$
로그인 후 복사

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$
로그인 후 복사

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
로그인 후 복사

Improved Solution:

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

^(?!.*filename.js$).*\.js$
로그인 후 복사

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

위 내용은 JavaScript에서 Regex Lookbehind 기능을 구현하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿