php 怎么去掉拼接字符串最后一个符号
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 怎么去掉拼接字符串最后一个符号相关的知识,希望对你有一定的参考价值。
使用join(),implode()函数拼接字符串,如果你使用的是循环拼接,对数组第一个或最后一个进行判断,取消连接符就可以了
<?php$arr = array("a","b","c");
$str = implode(",",$arr);// www.hi-docs.com/php/implode.html
$str = join(",",$arr);
foreach($arr as $item)
if($item==$arr[0])
...
?> 参考技术A substr($str,0,strlen($str)-1);
Java拼接字符串时 去掉最后一个多余的逗号
当我们遍历拼接字符串的时候,最后会多出一个我们添加的字符(比如逗号)
可使用如下三种方法去掉最后多余的符号
String str[] = { "hello", "beijing", "world", "shenzhen" };
StringBuffer buf = new StringBuffer();
for (int i = 0; i < str.length; i++) {
buf.append(str[i]).append(",");
}
if (buf.length() > 0) {
//方法一 : substring
System.out.println(buf.substring(0, buf.length()-1));
//方法二 :replace
System.out.println(buf.replace(buf.length() - 1, buf.length(), ""));
//方法三: deleteCharAt
System.out.println(buf.deleteCharAt(buf.length()-1));
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
作者:itmyhome
再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!希望你也加入到我们人工智能的队伍中来!https://www.cnblogs.com/captainbed
以上是关于php 怎么去掉拼接字符串最后一个符号的主要内容,如果未能解决你的问题,请参考以下文章
java中怎么用toString方法去除字符串中的标点,符号和数字?