취코, 취하다 코딩에~
php startsWith, endWith 본문
startsWith("abcdef", "ab") -> true
startsWith("abcdef", "cd") -> false
startsWith("abcdef", "ef") -> false
startsWith("abcdef", "") -> true
startsWith("", "abcdef") -> false
endsWith("abcdef", "ab") -> false
endsWith("abcdef", "cd") -> false
endsWith("abcdef", "ef") -> true
e
ndsWith("abcdef", "") -> true
endsWith("", "abcdef") -> false
'프로그래밍 > 웹' 카테고리의 다른 글
jquery 속성관련 메소드 (0) | 2018.02.11 |
---|---|
jquery html(), text(), val() 차이와 설명 (0) | 2018.02.11 |
html5 비디오/오디오 제어 (0) | 2018.02.11 |
시멘틱웹이란 (0) | 2018.02.10 |
웹 해킹 참조 사이트 (0) | 2018.02.08 |
Comments