1 개요[ | ]
- startsWith()
- startswith()
- HasPrefix()
- str_starts_with()
2 Go[ | ]
Go HasPrefix() 문서를 참고하십시오.
Go
CPU
-1.0s
MEM
-0M
-1.0s
Copy
package main
import (
"fmt"
"strings"
)
func main() {
str := "Hello world!"
// true
fmt.Println(strings.HasPrefix(str, "Hello"))
fmt.Println(strings.HasPrefix(str, "He"))
fmt.Println(strings.HasPrefix(str[2:], "ll"))
// false
fmt.Println(strings.HasPrefix(str, "ll"))
}
true true true false
3 JavaScript[ | ]
자바스크립트 startsWith() 문서를 참고하십시오.
JavaScript
Copy
const str = "Hello world!";
console.log( str.startsWith("Hello") ); // true
console.log( str.startsWith("He") ); // true
console.log( str.startsWith("ll", 2) ); // true
console.log( str.startsWith("ll") ); // false
▶ | true |
▶ | true |
▶ | true |
▶ | false |
4 PHP[ | ]
PHP str_starts_with() 문서를 참고하십시오.
PHP
Copy
<?php
$str = 'To be, or not to be, that is the question.';
var_dump(str_starts_with($str, 'To be'));
var_dump(str_starts_with($str, 'not to be'));
Loading
5 Python[ | ]
파이썬 startswith() 문서를 참고하십시오.
Python
Copy
str = 'Hello world!'
# True
print( str.startswith( 'Hello' ) )
print( str.startswith( 'He' ) )
print( str.startswith( 'll', 2 ) )
print( str.startswith( 'Hell', 0, 4 ) )
# False
print( str.startswith( 'll' ) )
print( str.startswith( 'Hell', 0, 3 ) )
Loading
6 같이 보기[ | ]
편집자 Jmnote
로그인하시면 댓글을 쓸 수 있습니다.
리눅스 Python 2.7 컴파일 설치 ― …리눅스 Python 2.7 컴파일 설치 ― …리눅스 Python 2.7 컴파일 설치 ― …리눅스 Python 2.7 컴파일 설치 ― …리눅스 Python 2.7 컴파일 설치 ― Jmnote리눅스 Python 2.7 컴파일 설치 ― ㅇㅇㅇ미운코딩새끼 ― 승호 도령미운코딩새끼 ― 불탄고등어미운코딩새끼 ― 김레이미운코딩새끼 ― 호박이미운코딩새끼 ― Junhg0211미운코딩새끼 ― 김왼손미운코딩새끼 ― 용딘이미운코딩새끼 ― Pinkcrimson유기농냠냠파이썬 ― 호박유기농냠냠파이썬 ― 이에스유기농냠냠파이썬 ― 이승현파이썬 global ― Jmnote파이썬 global ― John Jeong파이썬 global ― Jmnote파이썬 global ― John Jeong파이썬 global ― John Jeong파이썬 global ― John Jeong파이썬 global ― Jmnote파이썬 global ― John Jeong