substr substr
시작 색인과 끝 색인 사이에 있는 문자열 식의 하위 문자열을 반환합니다. 끝 색인이 정의되지 않으면 시작 색인과 끝 사이에 있습니다.
카테고리
문자열
함수 구문
substr(<parameters>)
매개 변수
매개변수
유형
문자열
문자열
beginIndex
정수
endIndex
정수
서명 및 반환된 유형
substr(<string>,<beginIndex>)
substr(<string>,<beginIndex>,<endIndex>)
문자열을 반환합니다.
예
substr("Hello World",6)
"World"를 반환합니다.
substr("Hello World", 0, 5)
"Hello"를 반환합니다.
recommendation-more-help
b22c9c5d-9208-48f4-b874-1cefb8df4d76