Language | Function | Exempli Gratia | Result |
---|---|---|---|
Javascript | substr(start,length) | '01234'.substr(1,3) | "123" |
substring(start,end) | '01234'.substring(1,3); | "12" | |
JAVA | substring(start,end) | '01234'.substring(1,3); | "12" |
Index starts with 0(zero) | |||
"end" argument means " Index -1 " |
2018년 11월 15일 목요일
substr vs substring
라벨:
문자열 자르기,
java,
javascript,
substr,
substring
2016년 1월 19일 화요일
Last Index Of in MS Office Excel
[구분] 엑셀 함수
LEN - 문자의 갯수를 가져온다.
[내용] 특정 문자를 뒤에서부터 검색하여 치환한다.
SUBSTITUTE의 특정 위치의 문자만을 치환하는 기능을 이용한다.
SUBSTITUTE의 특정 위치의 문자만을 치환하는 기능을 이용한다.
사용 함수 :
LEN - 문자의 갯수를 가져온다.
LEN(text)
e.g. LEN("excel") = 5
SUBSTITUTE - 특정 문자를 치환한다.
SUBSTITUTE(text, old_text, new_text, [instance_num])
e.g.1 SUBSTITUTE("contact","ta","ne") = connect
e.g.2 SUBSTITUTE("good","o","",2) = god
사용 설명 :
1. 특정 문자를 공백으로 치환한다.SUBSTITUTE(A1,"\","")
2. 특정 문자를 공백으로 전부 치환한 문자의 갯수와 원래 문자의 갯수의 차이를 구한다.
피드 구독하기:
글 (Atom)