특정문자 제거하기 입니다.
//arg0 은 문자열
//arg1 제거하려는 문자
function removeStr( arg0, arg1 )
{
if( arg0 == "" || arg1 == "" ) return "";
var str = arg0;
var i = 0;
var pos_str = 0;
var rtn_str = "";
while( i < str.length ) {
pos_str = str.indexOf(arg1,i);
if( pos_str == -1 ) {
rtn_str += str.substring(i, str.length );
break;
}else {
rtn_str += str.substring(i, pos_str );
i = pos_str+1;
}
}
return rtn_str;
}
게시판 목록
토크
개발과 관련된 어떤 얘기도 괜찮습니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 3210 |
전갈자리남자
|
9년 전 | 961 | |
| 3209 | 9년 전 | 1249 | ||
| 3208 |
|
9년 전 | 1646 | |
| 3207 |
|
9년 전 | 1708 | |
| 3206 |
PlayPixel
|
9년 전 | 1024 | |
| 3205 | 9년 전 | 1026 | ||
| 3204 | 9년 전 | 1395 | ||
| 3203 |
kiplayer
|
9년 전 | 1797 | |
| 3202 | 9년 전 | 1030 | ||
| 3201 | 9년 전 | 1513 | ||
| 3200 | 9년 전 | 933 | ||
| 3199 | 9년 전 | 1705 | ||
| 3198 | 9년 전 | 1390 | ||
| 3197 | 9년 전 | 1204 | ||
| 3196 | 9년 전 | 1592 | ||
| 3195 |
|
9년 전 | 1095 | |
| 3194 | 9년 전 | 950 | ||
| 3193 |
|
9년 전 | 1020 | |
| 3192 | 9년 전 | 1139 | ||
| 3191 |
|
9년 전 | 851 | |
| 3190 | 9년 전 | 764 | ||
| 3189 |
|
9년 전 | 978 | |
| 3188 |
PASKRAN
|
9년 전 | 845 | |
| 3187 | 9년 전 | 838 | ||
| 3186 |
|
9년 전 | 957 | |
| 3185 | 9년 전 | 945 | ||
| 3184 |
|
9년 전 | 936 | |
| 3183 |
|
9년 전 | 768 | |
| 3182 |
|
9년 전 | 1152 | |
| 3181 | 9년 전 | 886 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기