首页 > 编程 > JSP > 正文

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

2024-09-05 00:19:15
字体:
来源:转载
供稿:网友



//
// 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>/") %> 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表