템플릿 리터럴 의 놀라운 세계 덕분에 이제 ES6에서 크고 여러 줄로 구성되며 주석이 포함 된 의미있는 중첩 정규식을 작성할 수 있습니다 .
//build regexes without worrying about
// - double-backslashing
// - adding whitespace for readability
// - adding in comments
let clean = (piece) => (piece
.replace(/((^|\n)(?:[^\/\\]|\/[^*\/]|\\.)*?)\s*\/\*(?:[^*]|\*[^\/])*(\*\/|)/g, '$1')
.replace(/((^|\n)(?:[^\/\\]|\/[^\/]|\\.)*?)\s*\/\/[^\n]*/g, '$1')
.replace(/\n\s*/g, '')
);
window.regex = ({raw}, ...interpolations) => (
new RegExp(interpolations.reduce(
(regex, insert, index) => (regex + insert + clean(raw[index + 1])),
clean(raw[0])
))
);
이것을 사용하여 다음과 같이 정규 표현식을 작성할 수 있습니다.
let re = regex`I'm a special regex{3} //with a comment!`;
출력
/I'm a special regex{3}/
아니면 여러 줄은 어떻습니까?
'123hello'
.match(regex`
//so this is a regex
//here I am matching some numbers
(\d+)
//Oh! See how I didn't need to double backslash that \d?
([a-z]{1,3}) /*note to self, this is group #2*/
`)
[2]
hel
깔끔한 출력 !
"내가 실제로 줄 바꿈을 검색해야하는 경우?", 그럼 사용 \n
바보!
내 Firefox 및 Chrome에서 작업 중입니다.
"좀 더 복잡한 것은 어떻습니까?"
물론, 내가 작업하고있는 JS 파서를 파괴하는 객체가 있습니다 .
regex`^\s*
(
//closing the object
(\})|
//starting from open or comma you can...
(?:[,{]\s*)(?:
//have a rest operator
(\.\.\.)
|
//have a property key
(
//a non-negative integer
\b\d+\b
|
//any unencapsulated string of the following
\b[A-Za-z$_][\w$]*\b
|
//a quoted string
//this is #5!
("|')(?:
//that contains any non-escape, non-quote character
(?!\5|\\).
|
//or any escape sequence
(?:\\.)
//finished by the quote
)*\5
)
//after a property key, we can go inside
\s*(:|)
|
\s*(?={)
)
)
((?:
//after closing we expect either
// - the parent's comma/close,
// - or the end of the string
\s*(?:[,}\]=]|$)
|
//after the rest operator we expect the close
\s*\}
|
//after diving into a key we expect that object to open
\s*[{[:]
|
//otherwise we saw only a key, we now expect a comma or close
\s*[,}{]
).*)
$`
출력 /^\s*((\})|(?:[,{]\s*)(?:(\.\.\.)|(\b\d+\b|\b[A-Za-z$_][\w$]*\b|("|')(?:(?!\5|\\).|(?:\\.))*\5)\s*(:|)|\s*(?={)))((?:\s*(?:[,}\]=]|$)|\s*\}|\s*[{[:]|\s*[,}{]).*)$/
그리고 작은 데모로 실행합니까?
let input = '{why, hello, there, "you huge \\"", 17, {big,smelly}}';
for (
let parsed;
parsed = input.match(r);
input = parsed[parsed.length - 1]
) console.log(parsed[1]);
성공적으로 출력
{why
, hello
, there
, "you huge \""
, 17
,
{big
,smelly
}
}
인용 된 문자열을 성공적으로 캡처합니다.
나는 그것을 Chrome과 Firefox에서 테스트했으며, 대접을합니다!
경우 호기심 당신은 내가 무엇을하고 있었는지 체크 아웃 할 수 있습니다 , 그리고 그것의 시범 .
Firefox는 역 참조 또는 명명 된 그룹을 지원하지 않기 때문에 Chrome에서만 작동합니다. 따라서이 답변에 제공된 예는 실제로 중성 버전이며 유효하지 않은 문자열을 받아들이는 데 쉽게 속일 수 있습니다.
/\S+@\S+\.\S+/
않습니까?