JAVA-String 中删除指定字符(11种方法)

JAVA老师给我们留了一个课后作业,要求我们通过搜索JDK用尽可能多的方法删除String类中的指定字符,我只想到了 11 种方法,如果有不足或者遗漏希望读者能够不吝赐教。

第一种方法 – 通过循环从前往后遍历,如果不是要删除的字符则加到处理后的字符串中,代码如下:

public String deleteCharString0(String sourceString, char chElemData) {

String deleteString = "";

for (int i = 0; i < sourceString.length(); i++) {

if (sourceString.charAt(i) != chElemData) {

deleteString += sourceString.charAt(i);

}

}

return deleteString;

}

第二种方法 — 通过循环确定要删除字符的位置索引,然后通过分割字符串的形式,将子字符串拼接,注意最后一段子字符串和源字符串中没有要删除字符的情况,代码如下:

public String deleteCharString1(String sourceString, char chElemData) {

String deleteString = "";

int iIndex = 0;

for (int i = 0; i < sourceString.length(); i++) {

if (sourceString.charAt(i) == chElemData) {

if (i > 0) {

deleteString += sourceString.substring(iIndex, i);

}

iIndex = i + 1;

}

}

if (iIndex <= sourceString.length()) {

deleteString += sourceString.substring(iIndex, sourceString.length());

}

return deleteString;

}

第三种方法 — 原理同上,只不过查找要删除字符位置采用String类中的函数执行,效率不如上面的高,java班级资料群,首先是一二六,中间是五三四,最后是五一九,也可以交流,里面都是从事java工作代码如下:

public String deleteCharString2(String sourceString, char chElemData) {

String deleteString = "";

int iIndex = 0;

int tmpCount = 0;

do {

tmpCount = sourceString.indexOf(chElemData, iIndex);

if (tmpCount > 0) {

deleteString += sourceString.substring(iIndex, tmpCount);

}

if (tmpCount != -1) {

iIndex = tmpCount + 1;

}

} while (tmpCount != -1);

if (iIndex <= sourceString.length()) {

deleteString += sourceString.substring(iIndex, sourceString.length());

}

return deleteString;

}

第四种方法 — 原理与上方基本一致,只不过这次采用倒序方式,这里的坑就更多了,一定要注意索引的取值范围和是否合法,代码如下:

public String deleteCharString3(String sourceString, char chElemData) {

String deleteString = "";

int iIndex = sourceString.length();

int tmpCount = 0;

do {

tmpCount = sourceString.lastIndexOf(chElemData, iIndex - 1);

if (tmpCount < sourceString.length() && tmpCount >= 0) {

deleteString = sourceString.substring(tmpCount + 1, iIndex) + deleteString;

}

if (tmpCount != -1) {

iIndex = tmpCount;

}

} while (tmpCount != -1);

if (iIndex >= 0) {

deleteString = sourceString.substring(0, iIndex) + deleteString;

}

return deleteString;

}

第五种方法 — 通过采用正则的方式和replaceAll函数,本种方法要注意特殊字符,例如正则中的 “.”字符,需要对特殊字符进行转义,代码如下:

public String deleteCharString4(String sourceString, char chElemData) {

String deleteString = "";

final String strTable = "|^$*+?.(){}\\";

String tmpRegex = "[";

for (int i = 0; i < strTable.length(); i++) {

if (strTable.charAt(i) == chElemData) {

tmpRegex += "\\";

break;

}

}

tmpRegex += chElemData + "]";

deleteString = sourceString.replaceAll(tmpRegex, "");

return deleteString;

}

第六种方法 — 采用正则的方式将字符串分割成几个子字符串,再将子字符串进行拼接,代码如下:

public String deleteCharString5(String sourceString, char chElemData) {

String deleteString = "";

final String strTable = "|^$*+?.(){}\\";

String tmpRegex = "[";

for (int i = 0; i < strTable.length(); i++) {

if (strTable.charAt(i) == chElemData) {

tmpRegex += "\\";

break;

}

}

tmpRegex += chElemData + "]";

String[] tmpStringArray = sourceString.split(tmpRegex);

for (int i = 0; i < tmpStringArray.length; i++) {

deleteString += tmpStringArray[i];

}

return deleteString;

}

第七种方法 — 将字符编程可读序列,在通过 String 类中的方法替换,代码如下:

public String deleteCharString6(String sourceString, char chElemData) {

String tmpString = "";

tmpString += chElemData;

tmpString.subSequence(0, 0);

String deleteString = "";

deleteString = sourceString.replace(tmpString, deleteString.subSequence(0, 0));

return deleteString;

}

第八种方法 — 把原字符串转化为字符数组,然后原理与直接插入排序原理类似,代码如下:

public String deleteCharString7(String sourceString, char chElemData) {

String deleteString = "";

char[] Bytes = sourceString.toCharArray();

int iSize = Bytes.length;

for (int i = Bytes.length - 1; i >= 0; i--) {

if (Bytes[i] == chElemData) {

for (int j = i; j < iSize - 1; j++) {

Bytes[j] = Bytes[j + 1];

}

iSize--;

}

}

for (int i = 0; i < iSize; i++) {

deleteString += Bytes[i];

}

return deleteString;

}

第九种方法 — 原理与 第一种方法 类似,本次采用 stringBuffer 类中的 append 方法进行操作,我认为效率应该高于第一种。

public String deleteCharString8(String sourceString, char chElemData) {

StringBuffer stringBuffer = new StringBuffer("");

for (int i = 0; i < sourceString.length(); i++) {

if (sourceString.charAt(i) != chElemData) {

stringBuffer.append(sourceString.charAt(i));

}

}

return stringBuffer.toString();

}

第十种方法 — 采用 stringBuffer 类中的 replace and indexOf 方法(^_^ 故意凑方法),代码如下:

public String deleteCharString9(String sourceString, char chElemData) {

String tmpString = "";

tmpString += chElemData;

StringBuffer stringBuffer = new StringBuffer(sourceString);

int iFlag = -1;

do {

iFlag = stringBuffer.indexOf(tmpString);

if (iFlag != -1) {

stringBuffer = stringBuffer.replace(iFlag, iFlag + 1, "");

}

} while (iFlag != -1);

return stringBuffer.toString();

}

第十一种方法 — 采用 stringBuffer 类中的 deleteCharAt 和 indexOf 直接删除

public String deleteCharString10(String sourceString, char chElemData) {

String tmpString = "";

tmpString += chElemData;

StringBuffer stringBuffer = new StringBuffer(sourceString);

int iFlag = -1;

do {

iFlag = stringBuffer.indexOf(tmpString);

if (iFlag != -1) {

stringBuffer.deleteCharAt(iFlag);

}

}

} while (iFlag != -1);

return stringBuffer.toString();

}

程序运行截图:

时间: 2024-11-29 16:49:26

JAVA-String 中删除指定字符(11种方法)的相关文章

C字符串中删除指定字符几种算法

题如下图所示   题目意思很明显了,我们的思路其实也挺简单的,换句话说,删掉一个然后重构数组,补上那个空,一个个字符推进一格就行了嘛,不用想得太复杂(简单的来说就是偷懒).  代码如下 复制代码 #include<stdio.h> #include<string.h> void delchar(char s[], char c); int main(void) {  char c;  char s[80];  printf("Input a string: ")

PHP从数组中删除元素的四种方法实例

茴香豆的"茴"字有四种写法,PHP从数组中删除元素也有四种方法 ^_^. 删除一个元素,且保持原有索引不变 使用 unset 函数,示例如下: <?php $array = array(0 => "a", 1 => "b", 2 => "c"); unset($array[1]); //↑ 你想删除的key ?> 输出: Array (     [0] => a     [2] =>

js 删除数组的几种方法小结

 本篇文章主要是对js中删除数组的几种方法进行了总结介绍,需要的朋友可以过来参考下,希望对大家有所帮助 var arr=['a','b','c']; 若要删除其中的'b',有两种方法:   1.delete方法:delete arr[1]   这种方式数组长度不变,此时arr[1]变为undefined了,但是也有好处原来数组的索引也保持不变,此时要遍历数组元素可以才用  代码如下: for(index in arr) {  document.write('arr['+index+']='+ar

asp.net 正则替换html标签与删除指定字符方法

asp教程.net 正则替换html标签与删除指定字符方法,使用了正则表达式进行规则过滤,由于html标记都是基于<>这种格式,而且还有类似 这样的符号,所以分了2次处理将字符串处理为无html格式的字符串.   public string NoHtml(string html) {     string StrNohtml = System.Text.RegularExpressions.Regex.Replace(html, "<[^>]+>", &q

快捷键-sublime编辑器_如何从已打开文件中查询指定字符

问题描述 sublime编辑器_如何从已打开文件中查询指定字符 sublime编辑器_如何从已打开文件中查询指定字符? 如我在初始化文件中加入了session_start,避免以前开发过程中已经写过session_start()函数出现重复,需要删除.但挨个找显得特麻烦. 问:如何实现快速查找?如果只可以,请分享整套的查找技巧,当然,最好包括我在上面提到的问题. PS:已经百度了一下,暂未找到相关的内容,故来提问,请大虾小虾们帮帮忙!TKS

c++-编写程序,输入任意一个含有空格的字符串(至少10个字符),删除指定字符后输出该字符串。

问题描述 编写程序,输入任意一个含有空格的字符串(至少10个字符),删除指定字符后输出该字符串. 编写程序,输入任意一个含有空格的字符串(至少10个字符),删除指定字符后输出该字符串.例如,输入"jiangsu123"和删除位置5,则输出"jiansu123". 解决方案 #include <iostream> #include <string> using namespace std; int main() { char s1[100];

java substring()函数删除指定字符串

java substring()函数删除指定字符串 public class main {   /**    * case insensitive removal of a substring if it is at the end of a source string,    * otherwise returns the source string.    *    * a <code>null</code> source string will return <code

在数组中查询指定字符函数

在数组中查询指定字符函数 #include <iostream> using namespace std; bool find(int a[], int n, const int &sum, int &x, int &y) {     int i = 0, j = n-1, csum;     while (i < j)     {         csum = a[i] + a[j];         if (csum == sum)         {    

PHP删除数组中特定元素的两种方法

这篇文章介绍了PHP中删除数组中特定元素的两种方法,有需要的朋友可以参考一下   方法一: 复制代码 代码如下: <?php $arr1 = array(1,3, 5,7,8); $key = array_search(3, $arr1); if ($key !== false)     array_splice($arr1, $key, 1); var_dump($arr1); ?> 输出: array(4) { [0]=> int(1) [1]=> int(5) [2]=>