String msgContent = "0101,sadf,342";
String[] separtors = {"\r" ," " ,"," ,"," ,"." ,"。" ,"#" ,"\"" ,"”"};
System.out.println("转换之前:" + msgContent);
//进行分隔符统一
for (int i = 0; i < separtors.length; i++) {
msgContent = msgContent.replace(separtors[i], "#");
System.out.println("转换之中:" + msgContent);
}
System.out.println("转换之后:" + msgContent);
低级错误.你有遇到这样问题吗?
分享到:
相关推荐
delphi 自带 StringReplace 慢, 替换 StringReplace ,高效率,秒杀 原版
内置的`StringReplace`函数虽然提供了基本的替换服务,但在处理大量数据或长字符串时,其性能可能不尽人意。针对这种情况,开发人员经常寻找更高效的替代方案,如在本案例中提到的“Q_Replace.pas”文件所包含的快速...
`replace` 成员函数是 `std::string` 类中一个关键的方法,它允许程序员替换字符串中的子串或字符。本篇文章将详细讲解 `std::string` 的 `replace` 成员函数的几个常见用法。 1. **替换指定长度的子串** ```cpp ...
replace方法是javascript涉及到正则表达式中较为复杂的一个方法,严格上说应该是string对象的方法。只不过牵扯到正则的时候比较多一些。需要我们灵活的使用。 语法: stringObj.replace(regexp/substr,replacement)...
在给定的文件"Strings_StringReplace_StringReplace.pdf"中,主要探讨了如何使用`String`类的`replace()`方法来替换字符串中的字符或子串。下面我们将详细讲解`replace()`函数及其在Arduino编程中的应用。 `String`...
JavaScript 中 String 对象的 replace 方法详解 replace 方法是 JavaScript 中 String 对象的方法,用于将字符串中的部分内容替换为新的内容。该方法的语法为:`stringObj.replace(regexp/substr, replacement)`,...
代码如下:[ThreadStatic] static char[] mTempChars; protected static char[] GetTempData() { if (mTempChars == null) mTempChars = ... } public static string Replace(string value, string oldData, stri
$ npm install --save react-string-replace 用法 简单的例子 const reactStringReplace = require ( 'react-string-replace' ) reactStringReplace ( 'whats your name' , 'your' , ( match , i ) => ( < span> { ...
6. `.Replace(char oldChar, char newChar)` 和 `.Replace(string oldStr, string newStr)` 这两个方法用于在字符串中查找并替换指定的字符或子字符串。 ```csharp string str = "hello world"; string ...
replace方法返回一个新字符串,该字符串用newString代替原始字符串中所有的oldString。可以用String或StringBuilder对象作为CharSequence参数。 startsWith方法 startsWith方法如果字符串以prefix字符串开始,则...
在JavaScript中,`String.prototype.replace()` 是一个非常重要的字符串方法,用于在字符串中查找匹配的模式(可以是正则表达式或子字符串)并替换它们。这个方法的使用技巧广泛,能够实现各种复杂的字符串处理需求...
在Java编程语言中,`String` 类是处理字符串的核心类,它包含了大量的方法,使得对字符串的操作变得简单而高效。本篇文章将详细讲解`String`类的一些常用方法,并通过具体的例子来展示它们的用法。 1. **创建String...
8. 在 Java 中,StringReplace 方法不会改变原始字符串的值,因为 String 对象是不可变的。BufferReplace 方法也不会改变原始字符串的值。 二、Java 面向对象编程 1. 在 Java 中,继承是面向对象编程的基本特征之...
### String类的方法详解 在Java编程语言中,`String` 类是用于表示不可变文本序列的一个重要类。本文将详细介绍 `String` 类的一些常用方法及其应用场景,并通过示例代码加深理解。 #### 1. `length()` - **功能*...
StrPosDefs、StrPos32 和 StrPos64 这三个单元提供的函数是对 Delphi 中系统内置的 `system.pos` 和 `sysUtils.StringReplace` 的性能优化扩展。这些优化主要针对字符串搜索和替换操作,特别是在区分大小写和不区分...
字符串替换异步知道如何等待的“ string” .replace()函数安装$ npm install string-replace-async用法let replaceAsync = require ( "string-replace-async" ) ;await replaceAsync ( "#rebeccapurple" , / # ( \...
替换字符串替换字符串中的所有子字符串匹配项与String#replace()类似,但支持替换多个匹配项。 通过将字符串放入带有全局标志的RegExp构造函数中并将其传递给String#replace() ,可以实现类似的效果,但是无论如何,...
9. **String replace方法**:`replace(char oldChar, char newChar)`将字符串中所有出现oldChar的地方替换为newChar。例如`"hello".replace('l', 'x')`得到"xheoxo"。 10. **查找与排序字符**:遍历输入字符串,...