欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JSP中的字符替换函数 str_replace() 实现!

程序员文章站 2024-02-11 20:02:10
//// strreplace.java//package forum;import java.util.*;/*** title:* description:* copy...
//
// strreplace.java
//
package forum;
import java.util.*;

/**
* title:
* description:
* copyright: copyright (c) 2001
* company:
* @author
* @version 1.0
*/

public class strreplace {

public strreplace() {
}
public string str_replace(string from,string to,string source)
{
stringbuffer bf= new stringbuffer("");
stringtokenizer st = new stringtokenizer(source,from,true);
while (st.hasmoretokens())
{
string tmp = st.nexttoken();
system.out.println("*"+tmp);
if(tmp.equals(from))
{
bf.append(to);
}
else
{
bf.append(tmp);
}
}
return bf.tostring();
}
}


// 使用方法
<jsp:usebean id="replace" scope="page" class="forum.strreplace" />
<%= replace.str_replace("<","^","<h1>123456</h1>") %>