当前位置: 技术问答>java相关
字符串操作。
来源: 互联网 发布时间:2015-07-19
本文导语: java中有没有类似于php中的一些explode的方法,还有过滤一段字符中html标签的方法。小弟现在急用。 | 不知道php中的explode是什么意思,你看下面的代码: String str="C:/bea/registry.xml"; StringTokenizer ...
java中有没有类似于php中的一些explode的方法,还有过滤一段字符中html标签的方法。小弟现在急用。
|
不知道php中的explode是什么意思,你看下面的代码:
String str="C:/bea/registry.xml";
StringTokenizer st=new StringTokenizer(str,new String("/"));
while(st.hasMoreTokens())
{
out.println(st.nextToken() ;sub[i]);
}可能就是你的explode的意思吧!
将一个字符串A根据其中的特定字符B,将A分为若干个子字符!
String str="C:/bea/registry.xml";
StringTokenizer st=new StringTokenizer(str,new String("/"));
while(st.hasMoreTokens())
{
out.println(st.nextToken() ;sub[i]);
}可能就是你的explode的意思吧!
将一个字符串A根据其中的特定字符B,将A分为若干个子字符!
|
/**
* Returns the specified string converted to a format suitable for
* HTML. All signle-quote, double-quote, greater-than, less-than and
* ampersand characters are replaces with their corresponding HTML
* Character Entity code.
*
* @param in the String to convert
* @return the converted String
*/
public static String toHTMLString(String in) {
StringBuffer out = new StringBuffer();
for (int i = 0; in != null && i
* Returns the specified string converted to a format suitable for
* HTML. All signle-quote, double-quote, greater-than, less-than and
* ampersand characters are replaces with their corresponding HTML
* Character Entity code.
*
* @param in the String to convert
* @return the converted String
*/
public static String toHTMLString(String in) {
StringBuffer out = new StringBuffer();
for (int i = 0; in != null && i