특정문자 제거하기 입니다.
//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;
}
게시판 목록
토크
개발과 관련된 어떤 얘기도 괜찮습니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 3600 |
nature1235
|
10개월 전 | 431 | |
| 3599 |
swallow
|
2년 전 | 1341 | |
| 3598 |
swallow
|
2년 전 | 1186 | |
| 3597 |
swallow
|
2년 전 | 791 | |
| 3596 | 2년 전 | 1409 | ||
| 3595 | 2년 전 | 689 | ||
| 3594 | 2년 전 | 1406 | ||
| 3593 |
|
3년 전 | 1233 | |
| 3592 |
|
3년 전 | 1566 | |
| 3591 |
|
3년 전 | 1479 | |
| 3590 |
|
3년 전 | 1429 | |
| 3589 |
|
3년 전 | 1236 | |
| 3588 |
|
3년 전 | 1219 | |
| 3587 |
|
4년 전 | 1135 | |
| 3586 |
|
4년 전 | 1369 | |
| 3585 |
|
4년 전 | 1290 | |
| 3584 |
|
4년 전 | 1034 | |
| 3583 |
Arm코리아
|
4년 전 | 1130 | |
| 3582 |
|
4년 전 | 1239 | |
| 3581 |
|
4년 전 | 2193 | |
| 3580 |
|
4년 전 | 1265 | |
| 3579 |
|
4년 전 | 1295 | |
| 3578 |
|
4년 전 | 1530 | |
| 3577 | 4년 전 | 1667 | ||
| 3576 |
|
4년 전 | 1658 | |
| 3575 |
|
4년 전 | 1669 | |
| 3574 |
|
4년 전 | 2089 | |
| 3573 |
|
4년 전 | 1546 | |
| 3572 |
|
4년 전 | 1530 | |
| 3571 |
|
4년 전 | 1611 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기