String自定义方法
Posted maxudong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了String自定义方法相关的知识,希望对你有一定的参考价值。
String自定义方法
/** *找出字符串中有几个特定的字符串 * @param souce 源字符串 * @param find 指定需要查询计数字符串 * @return 返回指定字符串的技术值 */ public int getStrCount(String souce, String find) { int count = 0; int index = 0; while (true) { index = souce.indexOf(find, index); if (index > 0) { count++; index++; } else { break; } } return count; }
public static void main(String[] args) { String str = "aaabbbabbabc"; String find = "ab"; System.out.println(getStrCount(str, find)); }
/** *相当于String的replaceAll()方法 * @param source 源字符串 * @param find 需要被代替的子字符串 * @param replacement 代替字符串 * @return 被替换后的字符串 */ public static String replaceAll(String source, String find, String replacement) { StringBuffer buffer = new StringBuffer(); while (source.indexOf(find) != -1) { int index = source.indexOf(find); buffer.append(source.substring(0, index)); buffer.append(replacement); source = source.substring(index + find.length()); } buffer.append(source); return buffer.toString(); }
public static void main(String[] args) { String str = "aaaasdxffffwweds"; System.out.println(replaceAll(str, "aa", "bb")); }
/**字符串的replace(char oldChar, char newChar) * @param source 原字符串 * @param find 查找的字符 * @param replacewith 替代原有的字符 */ public static String replace(String source, char find, char replacewith){ StringBuffer buffer=new StringBuffer(); while(source.indexOf(find)!=-1){ int index=source.indexOf(find); buffer.append(source.substring(0,index)); buffer.append(replacewith); source=source.substring(index+1); } buffer.append(source); return buffer.toString(); }
public static void main(String[] args) { String str = "aaaasdxffffaaaaeds"; System.out.println(str.replace(\'a\', \'b\')); }
//将通过分隔符分割字符串,分隔符是分割字符串的每个字符 public static String[] splitChar(String str,String stSplit) { ArrayList<String> lst = new ArrayList<String>(); StringTokenizer st = new StringTokenizer(str,stSplit); while(st.hasMoreTokens()) { lst.add(st.nextToken()); } return (String[])lst.toArray(new String[st.countTokens()]); }
以上是关于String自定义方法的主要内容,如果未能解决你的问题,请参考以下文章
Visual Studio 自定义代码片段在方法定义的参数列表中不起作用
创建一个叫做机动车的类: 属性:车牌号(String),车速(int),载重量(double) 功能:加速(车速自增)减速(车速自减)修改车牌号,查询车的载重量。 编写两个构造方法:一个没有(代码片段