split 찢다.
내가 지정하는 문구를 구분자로 나눌 수 있다. , 콤마로 나눈다.
command |
target |
value |
store |
안녕하세요. [스플릿] 입니다! 반가워요 ~ |
list |
storeEval |
storedVars.list.split('입니다!' ); |
test_split |
echo |
${test_split} |
|
결과 : 안녕하세요. [스플릿] , 반가워요 ~
## 위와같이 "입니다!" 라는 문구를 구분자로해서 안녕하세요. [스플릿] 와 반가워요 ~ 로 바뀌었다.
아래와같이 여러번 스플릿하여 빼고자 하는 단어만 남길 수 있따.
command | target | value |
store | 안녕하세요. [스플릿] 입니다! 반가워요 ~ | list |
storeEval | split2=storedVars.list.split('하세요. [' ) split2=split2[1].split('] 입니다!'); split2=split2[0] | test_split |
echo | ${test_split} |
|
결과 : 스플릿