[ASP]문자열(Mid, Instr, InstrRev, LCase, UCase)
예를 들면 email = euneun@tistory.com 위의 mail 이름이 있다고 했을 때 아이디와 도메인을 분리하고자 한다면 다음과 같은 함수를 사용한다. mail1 = Mid(email 1, Instr(email, "@") - 1)mail2 = Mid(email InstrRev(mail, "@") + 1) 이렇게 하면 아래와 같은 값을 얻을 수 있다. mail1 = euneunmail2 = tistory.com Mid함수 : Mid(문자열, 어디서부터, 어디까지)Instr함수 : 좌->우 Instr(문자열, 어디까지)InstrRev함수 : 우->좌 Instr(문자열, 어디까지) ------------------------------------------------------------------..
2015. 11. 17.
[PHP]긴 문장 생략
// -> onlytext(적용대상글,노출할글자수,[more 문자열 기본(...)],[캐릭터셋 기본 (UTF-8)]); // -> onlytext('안녕하세염 뿌잉뿌잉~',10); function onlytext($s_str,$s_length,$s_end="",$s_charset="") { if(!$s_charset) $s_charset="UTF-8"; if(!$s_end) $s_end=".."; $s_str=trim($s_str); $s_str=str_replace("\r\n","",$s_str); $s_str=str_replace(" ","",$s_str); $s_str=str_replace(" ","",$s_str); $s_str=strip_tags($s_str); // 2..
2015. 11. 17.