Trim 함수 자바스크립트로 사용하기 입니다.
<script language="javascript">
function ltrim(value)
{
var LeftTrimValue = "";
var i=0;
if( value == "" )
return "";
strLen = value.length;
while(i<strLen)
{
if(value.charAt(i) != " ") break;
i++;
}
for(s=i;s<strLen;s++)
{
LeftTrimValue = LeftTrimValue + value.charAt(s);
}
return LeftTrimValue;
}
function rtrim(value)
{
var RightTrimValue = "";
if( value == "" )
return "";
strLen = value.length;
--strLen;
while( 0 <= strLen)
{
if(value.charAt(strLen) != " ") break;
--strLen;
}
for(s=0;s<=strLen;s++)
{
RightTrimValue = RightTrimValue + value.charAt(s);
}
return RightTrimValue;
}
function trim(value)
{
return rtrim(ltrim(value));
}
function test()
{
switch(eval(form.sel.value))
{
case 1 : alert("\"" + trim(form.ok.value) + "\"" ); break;
case 2 : alert("\"" + rtrim(form.ok.value) + "\"" ); break;
case 3 : alert("\"" + ltrim(form.ok.value) + "\"" ); break;
}
}
</script>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7630 | 10년 전 | 655 | ||
| 7629 |
|
10년 전 | 2398 | |
| 7628 | 10년 전 | 795 | ||
| 7627 |
|
10년 전 | 1038 | |
| 7626 |
|
10년 전 | 1795 | |
| 7625 | 10년 전 | 718 | ||
| 7624 | 10년 전 | 734 | ||
| 7623 |
|
10년 전 | 3100 | |
| 7622 | 10년 전 | 735 | ||
| 7621 |
leeleeleelee
|
10년 전 | 591 | |
| 7620 | 10년 전 | 542 | ||
| 7619 | 10년 전 | 495 | ||
| 7618 | 10년 전 | 1032 | ||
| 7617 | 10년 전 | 729 | ||
| 7616 | 10년 전 | 658 | ||
| 7615 | 10년 전 | 730 | ||
| 7614 | 10년 전 | 1270 | ||
| 7613 |
|
10년 전 | 2086 | |
| 7612 | 10년 전 | 1153 | ||
| 7611 | 10년 전 | 1423 | ||
| 7610 |
|
10년 전 | 1907 | |
| 7609 |
|
10년 전 | 1357 | |
| 7608 |
mwdkim
|
10년 전 | 1139 | |
| 7607 |
|
10년 전 | 1057 | |
| 7606 |
mwdkim
|
10년 전 | 3939 | |
| 7605 | 10년 전 | 695 | ||
| 7604 | 10년 전 | 1032 | ||
| 7603 | 10년 전 | 1658 | ||
| 7602 |
|
10년 전 | 1082 | |
| 7601 |
AniNest
|
10년 전 | 2796 | |
| 7600 |
port443
|
10년 전 | 1039 | |
| 7599 | 10년 전 | 950 | ||
| 7598 | 10년 전 | 1027 | ||
| 7597 | 10년 전 | 4579 | ||
| 7596 |
SeungYeon
|
10년 전 | 896 | |
| 7595 |
untitled
|
10년 전 | 2431 | |
| 7594 |
프로그래머7
|
10년 전 | 1738 | |
| 7593 |
untitled
|
10년 전 | 2382 | |
| 7592 |
untitled
|
10년 전 | 1949 | |
| 7591 |
untitled
|
10년 전 | 2681 | |
| 7590 |
아리마2001
|
10년 전 | 857 | |
| 7589 | 10년 전 | 1115 | ||
| 7588 |
|
10년 전 | 2925 | |
| 7587 | 10년 전 | 1310 | ||
| 7586 | 10년 전 | 675 | ||
| 7585 | 10년 전 | 1700 | ||
| 7584 | 10년 전 | 1414 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1167 | |
| 7582 |
|
10년 전 | 1123 | |
| 7581 | 10년 전 | 1360 | ||
| 7580 | 10년 전 | 1010 | ||
| 7579 |
|
10년 전 | 611 | |
| 7578 | 10년 전 | 1433 | ||
| 7577 |
|
10년 전 | 1877 | |
| 7576 | 10년 전 | 1392 | ||
| 7575 |
멋진남자임
|
10년 전 | 1469 | |
| 7574 | 10년 전 | 2125 | ||
| 7573 | 10년 전 | 3260 | ||
| 7572 | 10년 전 | 765 | ||
| 7571 |
|
10년 전 | 785 | |
| 7570 |
|
10년 전 | 1320 | |
| 7569 | 10년 전 | 1556 | ||
| 7568 |
this1mg
|
10년 전 | 1055 | |
| 7567 |
|
10년 전 | 768 | |
| 7566 | 10년 전 | 920 | ||
| 7565 |
Angel하늘
|
10년 전 | 1014 | |
| 7564 |
seoldi
|
10년 전 | 1251 | |
| 7563 |
|
10년 전 | 1394 | |
| 7562 |
멋진남자임
|
10년 전 | 2093 | |
| 7561 | 10년 전 | 716 | ||
| 7560 |
leeleeleelee
|
10년 전 | 916 | |
| 7559 | 10년 전 | 5054 | ||
| 7558 |
RinaP
|
10년 전 | 790 | |
| 7557 |
|
10년 전 | 1254 | |
| 7556 | 10년 전 | 1198 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1669 | |
| 7554 | 10년 전 | 1100 | ||
| 7553 |
senseme
|
10년 전 | 1341 | |
| 7552 |
ehdltdoit
|
10년 전 | 1441 | |
| 7551 |
|
10년 전 | 1833 | |
| 7550 |
leeleeleelee
|
10년 전 | 1595 | |
| 7549 | 10년 전 | 2433 | ||
| 7548 | 10년 전 | 1849 | ||
| 7547 |
멋진남자임
|
10년 전 | 1967 | |
| 7546 | 10년 전 | 1011 | ||
| 7545 |
ILMare1003
|
10년 전 | 1296 | |
| 7544 |
|
10년 전 | 1258 | |
| 7543 | 10년 전 | 893 | ||
| 7542 | 10년 전 | 662 | ||
| 7541 |
울라라라우
|
10년 전 | 870 | |
| 7540 | 10년 전 | 1602 | ||
| 7539 | 10년 전 | 942 | ||
| 7538 |
|
10년 전 | 1837 | |
| 7537 | 10년 전 | 3618 | ||
| 7536 |
Gaumi
|
10년 전 | 1419 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1279 | |
| 7534 |
senseme
|
10년 전 | 1210 | |
| 7533 | 10년 전 | 1206 | ||
| 7532 | 10년 전 | 868 | ||
| 7531 | 10년 전 | 2061 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기