티스토리 뷰
'===================================================================
' 배열 내용중 offset ~ length 까지를 뽑아 배열로 반환
'------------------------------------------------------------------
' array_slice(arr,0,3)
'===================================================================
Function array_slice(arr, offset, length)
Dim x : x = 0
Dim newArray()
For i = offset to length
ReDim Preserve newArray(x)
newArray(x) = arr(i)
x = x + 1
Next
array_slice = newArray
End Function
'웹프로그래밍 > ASP Classic' 카테고리의 다른 글
| ASP Xtreme Evolution Framework (0) | 2010.04.02 |
|---|---|
| Ajax with Classic ASP (0) | 2010.04.02 |
| Classic ASP 에 OpenID 적용 (0) | 2009.12.29 |
| 저장프로시저 SP 에서 text 형식 파라미터 (1) | 2009.12.29 |
| QueryString, Form 으로 넘어오는값 자동으로 변수화 (0) | 2009.12.13 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Docker
- 안드로이드
- ASP
- JSON
- 한글
- IE
- CSS
- macos
- 워드프레스
- centos
- PHP
- Android
- IOS
- iphone
- classic asp
- Prototype
- JQuery
- javascript
- laravel
- mssql
- API
- Debug
- nginx
- nodejs
- sencha touch
- Linux
- Wordpress
- iis
- Mac
- git
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
글 보관함