Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- sql순위
- asp함수
- VARIABLE
- 이미지세로길이
- array
- join
- FileSystemObject
- inner join
- xmldom
- update
- javascript 한글입력체크
- WML
- ERD
- jdbc driver
- 자바기초
- injection
- VarType
- JavaScript
- wap
- sql랭킹
- SPLIT
- tempDB
- XML
- 이미지가로길이
- 한글입력체크
- MSSQL보안
- 정규식
- 인젝션
- instr
- sql업데이트
Archives
- Today
- Total
3초기억력
Java Script - 문자열 자르기 본문
어디서 퍼온거였는데, 기억안남.
한글, 영문 둘다 가능하다고는 하나, 잘안될때가 많음(특히 space 같은거)
'//문자열자르기 시작
function isstrlen(Str,CutLen)
temp=0
for CheckPoint=1 to len(Str)
strTOasc=asc(mid(Str,CheckPoint,1))
if strTOasc>0 and strTOasc<127 then
temp=temp+1
else
temp=temp+2
end if
if temp<=CutLen then CutPoint=CheckPoint
next
if CutLen=0 then isstrlen=temp else isstrlen=CutPoint
end function
' Byte단위로 원하는 길이만큼 잘라서 AddStr값 뒤에 붙여주기
function cutstr(Str,MaxLen,AddStr)
strlen=isstrlen(Str,0)
if strlen>MaxLen then
cutstr=left(Str,isstrlen(Str,MaxLen-len(AddStr))) & AddStr
else
cutstr=Str
end if
end function
'//문자열자르기 끝
'플밍_기타' 카테고리의 다른 글
JavaScript - Email 문자를 제대로 입력했는지 체크 (0) | 2008.11.17 |
---|---|
HTML ( Form ) - 간단하면서도 맨날 까먹는 LOGIN 박스 (0) | 2008.11.17 |
meta 태그이용, 이미지 퍼가기 막기 (0) | 2008.11.17 |
JDBC SQL2000 Driver (0) | 2008.11.17 |
시간 (초) 단위로 감산되는 자바스크립트(펌) (0) | 2008.11.12 |
Comments