string的那些操作
Posted mzc--
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了string的那些操作相关的知识,希望对你有一定的参考价值。
//获取路径中最后的\\之前的内容
String storePath = StringUtils.substringBeforeLast("C:\\Users\\mzc\\Desktop\\test.xlsx","\\")
//判断字符串中是否含有另一个字符串,有则替换掉,没有使字符串为空
String a = "qwerty"
a = a.contains("qwe") ?a.replace("qwe", "") : "";
以上是关于string的那些操作的主要内容,如果未能解决你的问题,请参考以下文章
C++ string的那些坑,C++ string功能补充(类型互转,分割,合并,瘦身) ,c++ string的内存本质(简单明了的一个测试)