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 |
Tags
- PDA
- 옴니아2
- 한메일 smtp
- 오즈 옴니아
- 이클립스 설정
- 윈도우 7
- Live Mesh
- 파블애드
- jQuery
- 삼성 메모리
- DDos 전용 백신
- Windows 7
- 한메일
- 파워블로그
- 이클립스
- ddos
- 한메일 pop
- Ajax
- HP
- 오좀니아
- VMwareTools
- USB 레지스트리
- IE 8
- IE8
- Internet Explorer 8
- XP 설치
- 이클립스 플러그인
- HP 신제품
- VMware
- php
Archives
- Today
- Total
엉망진창
웹언어별 문자열 치환 함수 본문
치환함수에 대해서 알아봅니다.
JavaScript
먼저 자바스크립트에서 문자열 치환방법입니다.
<script language="JavaScript">
str = "대니를 바꿔버립시다."
re = "대니"
newstr = str.replace(re, "전성대");
document.write(newstr)
</script>
출력결과 : 전성대를 바꿔버립시다.
ASP
이번엔 ASP에서 치환을 해봅시다.
<%
str = "대니를 바꿔버립시다."
re = "대니"
newstr = replace(str,re,"전성대")
response.write newstr
%>
출력결과 : 전성대를 바꿔버립시다.
PHP
이번엔 php에서의 문자열 치환입니다.
<?
$str = "대니를 바꿔버립시다.";
$re = "대니";
$newstr = str_replace("대니","전성대",$str)
echo ($newstr);
?>
출력결과 : 전성대를 바꿔버립시다.
JSP
이번엔 jsp에서의 문자열 치환입니다.
<%
String usf_replace(String src, String oldstr, String newstr) {
if (src == null) return null;
StringBuffer dest = new StringBuffer("");
try {
int len = oldstr.length();
int srclen = src.length();
int pos = 0;
int oldpos = 0;
while ((pos = src.indexOf(oldstr, oldpos)) >= 0) {
dest.append(src.substring(oldpos, pos));
dest.append(newstr);
oldpos = pos + len;
}
if (oldpos < srclen)
dest.append(src.substring(oldpos, srclen));
} catch ( Exception e ) {
e.printStackTrace();
}
return dest.toString();
}
결과 = usf_replace( "대니를 바꿔버립시다.", "대니", "전성대");
%>
출력결과 : 전성대를 바꿔버립시다.
JavaScript
먼저 자바스크립트에서 문자열 치환방법입니다.
<script language="JavaScript">
str = "대니를 바꿔버립시다."
re = "대니"
newstr = str.replace(re, "전성대");
document.write(newstr)
</script>
출력결과 : 전성대를 바꿔버립시다.
ASP
이번엔 ASP에서 치환을 해봅시다.
<%
str = "대니를 바꿔버립시다."
re = "대니"
newstr = replace(str,re,"전성대")
response.write newstr
%>
출력결과 : 전성대를 바꿔버립시다.
PHP
이번엔 php에서의 문자열 치환입니다.
<?
$str = "대니를 바꿔버립시다.";
$re = "대니";
$newstr = str_replace("대니","전성대",$str)
echo ($newstr);
?>
출력결과 : 전성대를 바꿔버립시다.
JSP
이번엔 jsp에서의 문자열 치환입니다.
<%
String usf_replace(String src, String oldstr, String newstr) {
if (src == null) return null;
StringBuffer dest = new StringBuffer("");
try {
int len = oldstr.length();
int srclen = src.length();
int pos = 0;
int oldpos = 0;
while ((pos = src.indexOf(oldstr, oldpos)) >= 0) {
dest.append(src.substring(oldpos, pos));
dest.append(newstr);
oldpos = pos + len;
}
if (oldpos < srclen)
dest.append(src.substring(oldpos, srclen));
} catch ( Exception e ) {
e.printStackTrace();
}
return dest.toString();
}
결과 = usf_replace( "대니를 바꿔버립시다.", "대니", "전성대");
%>
출력결과 : 전성대를 바꿔버립시다.
'Study_Web > Web Common' 카테고리의 다른 글
웹 접근성 연구소 K-WAH (0) | 2011.04.06 |
---|---|
CVS 사용에 대한 FAQ 모음 (0) | 2011.03.09 |
Xeams: Multi-OS And Free E-mail Server (0) | 2010.01.11 |
70+ Practical Cheat Sheets For Web Designers And Developers (0) | 2009.04.21 |
Internet Explorer 6에서 PNG 사용 (3) | 2009.03.04 |