Clean Code that Works.



ASP Substring 찾다가 찾아낸 함수.
참조할 변수와 시작 점 그리고 길이를 입력 하면 된다.
참고 사이트는 http://www.w3schools.com/vbscriptASP가 비베를 사용하니깐 비베 사이트에 ~_~



The Mid function returns a specified number of characters from a string.

Tip: Use the Len function to determine the number of characters in a string.

Syntax

Mid(string,start[,length])

Parameter Description
string Required. The string expression from which characters are returned
start Required. Specifies the starting position. If set to greater than the number of characters in string, it returns an empty string ("")
length Optional. The number of characters to return

Example 1

dim txt
txt="This is a beautiful day!"
document.write(Mid(txt,1,1))
Output:
T

Example 2

dim txt
txt="This is a beautiful day!"
document.write(Mid(txt,1,11))
Output:
This is a b

Example 3

dim txt
txt="This is a beautiful day!"
document.write(Mid(txt,1))
Output:
This is a beautiful day!

Example 4

dim txt
txt="This is a beautiful day!"
document.write(Mid(txt,10))
Output:
beautiful day!

사용자 삽입 이미지

익스에서 파이어폭스 쓰다가 이번에 오페라로 넘어왔습니다.

파이어 폭스 보다도 더 가볍고. 예쁘네요.
우리나라 대부분 사이트들이 activex 를 너무 많이 쓰고 웹 표준을 준수 하지 않기 때문에...
문제가 있는 사이트들도 있지만 아주 만족 합니다.

그림 오른쪽 상단에 보면 위젯이 있는데 브라우져 주제에 다양한 위젯을 제공합니다 -ㅁ-;;

파이어폭스 기능중에 페이지를 IE로 보는 애드온이 있는데 오페라도 이 기능이 있으면 좋을듯 싶네요.
마우스 오른쪽키 눌르면 현재 페이지를 IE 창 열어서 보는 기능은 추가 할 수 있습니다.

다운 받고 싶으신 분은 www.opera.com 에 가셔서 다운 받으세요

플립형 화면 보호기 랍니다.

사용자 삽입 이미지


제작한 사람 홈페이지 http://www.hanlee.com/

유명하신 웹디자이너 이신듯 하더군요..

이번에 웹 브라우져도 오페라로 바꿔봤습니다. 빠른 속도와 인터페이스, 위젯 기능도 맘에 들어요.

다만 우리나라 대부분의 웹사이트들이 IE를 기준으로 만들어져서 불편 할 때도 있습니다.

특히 쥐마켓 할때 -ㅁ-;; 사이트가 너무 난잡해서 원..=ㅁ=;;;

이번 기말고사는 이제 두과목 남았는데 빨리 보고 JSP공부하는거 마져 봐야 겠어요.

사용자 삽입 이미지
사용자 삽입 이미지