728x90
μλ°μ€ν¬λ¦½νΈ : λ¬Έμμ΄ λ©μλ : match()
μ΄λ² μκ°μλ λ¬Έμμ΄ λ©μλμΈ match()μ λν΄ μμλ³΄κ² μ΅λλ€! π
#1. match( )
match() λ©μλλ λ¬Έμμ΄μ κ²μνκ³ λ°°μ΄μ λ°νν©λλ€.
! match( ) μ¬μ© λ°©λ² !
"λ¬Έμμ΄".math(κ²μκ°);
"λ¬Έμμ΄".math(μ κ·μ νν);
const str1 = "javascript reference";
const currentStr1 = str1.math("javascript"); // javascript
const currentStr2 = str1.math("reference"); // reference
const currentStr3 = str1.math("r"); // r
const currentStr4 = str1.math(/reference/); // reference
const currentStr5 = str1.math(/Reference/); // null
const currentStr6 = str1.math(/Reference/i); // reference
const currentStr7 = str1.math(/r/g); // ['r', 'r', 'r']
const currentStr8 = str1.math(/e/g); // ['e', 'e', 'e', 'e']
! point ! λμλ¬Έμλ₯Ό ꡬλΆνλ©° λ¬Έμμ΄μ κ²μκ°μ΄ μμ κ²½μ° nullμ΄ λ°νλλ€!
728x90
'JAVASCRIPT' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[JAVASCRIPT] ν¨μμ μ ν (4) | 2022.08.23 |
---|---|
[JAVASCRIPT] λ¬Έμμ΄ λ©μλ : charAt( ) (1) | 2022.08.23 |
[JAVASCRIPT] λ¬Έμμ΄ λ©μλ : search( ) (1) | 2022.08.23 |
[JAVASCRIPT] λ¬Έμμ΄ λ©μλ : includes( ) (4) | 2022.08.18 |
[JAVASCRIPT] λ¬Έμμ΄ λ©μλ : padStart( ) / padEnd( ) (3) | 2022.08.18 |
λκΈ