728x90
반응형
/regex\\n/g
위 Regex를 변수에 담아보자.
var match_string = "regex\n";
var regex_string = new RegExp(match_string, "g");
"original_string_regex\n_test_".replace(regex_string, "add_string");
https://stackoverflow.com/questions/494035/how-do-you-use-a-variable-in-a-regular-expression
728x90
반응형
'Programming > JavaScript & TypeScript' 카테고리의 다른 글
[Angular] ERROR in node_modules/@types/node/index.d.ts(20,1): error TS1084: Invalid 'reference' directive syntax. 해결법 (0) | 2020.11.03 |
---|---|
WebSocket과 Socket.IO (0) | 2020.10.26 |
[JavaScript] console.log 할 때 \r, \n, \t (Escape Sequence) 출력 방법 (1) | 2020.10.22 |
[TypeScript] Type Annotation (0) | 2020.10.21 |
[JavaScript] map, for...in, for...of, forEach문 (0) | 2020.10.15 |