网站首页
编程语言
数据库
系统相关
其他分享
编程问答
首页
>
其他分享
>String.replaceAll(".", "\\")的全替换
String.replaceAll(".", "\\")的全替换
时间:2023-01-08 15:24:54
浏览次数:50
标签:
String
yc
replaceAll
static
com
替换
public static void main(String[] args) {
String s = "com.yc";
s = s.replaceAll(".", "/");
}
需要变成com/yc 但结果是s="//////"
"."会改变全部。 需要转义 。
正则表达式中\\表示\ 而java语言中\\表示字符\,因此表示一个\就要用\\
改 s.replaceAll("\\.", "/");
标签:
String
,
yc
,
replaceAll
,
static
,
com
,
替换
From: https://www.cnblogs.com/luojing88/p/17034705.html
相关文章
QTdouble转QString(各种类型转换)
每次写代码的时候总是要重新回想用哪个函数(代码写得太少了),今天要总结一下double转QString用下面这个函数 第二个参数charformat默认是gformat 可以传的......
Go实现String方法
给结构体实现String()sting方法,方便按照我们想看的方式打印出来fmt.Println(),类似与python的__str__和__repr__packagemain_testimport( "fmt" "github.com/byteda......
linux 中sed命令输出匹配项并进行替换
001、[b20223040323@admin1test]$lsa.txt[b20223040323@admin1test]$cata.txt33jjaaddaaff88rfeeaaff33[b20223040323@admin1test]$sed-n'/a......
java中String类型的相关知识的简单总结
java中String类型的相关知识总结一、常用方法:1.构造方法:byte数组可指定offset和length可指定charsetchar数组可指定offset和count字符序列String......
[ABC264G] String Fair
[ABC264G]StringFairSolution目录[ABC264G]StringFairSolution更好的阅读体验戳此进入题面SolutionCodeUPD更好的阅读体验戳此进入题面给定$n$条评分规则,每......
StringCbCatW与StringCchCatW的区别
仔细看官方文档里,区别主要在第二个参数:StringCchCatW的cbDest:以字节为单位StringCchCatW的cchDest:以字符为单位大家根据实际情况选择合适的函数。附:StringCbCat、Stri......
认识 Java 中的 StringBuilder 类
Stringstr="hello"; System.out.println(str); System.out.println(str+"world"); }输出的结果是:hellohelloworld从运行结果中我们可以看到,程序运行时会额外创建......
刷刷刷Day8| 剑指 Offer 05. 替换空格
剑指Offer05.替换空格LeetCode题目要求请实现一个函数,把字符串s中的每个空格替换成"%20"。示例输入:s="Wearehappy."输出:"We%20are%20happy."解题思路借助......
string容器拼接
string字符串拼接1函数原型:2string&operator+=(constchat*str);//重载+=操作符号3string&operator+=(constcharc)//重载+=操作符4string&operator+=(......
Java中的StringUtils引入及使用
pom.xml中引入依赖<!--https://mvnrepository.com/artifact/org.apache.commons/commons-lang3--><dependency><groupId>org.apache.commons</groupId><artifactId>......
赞助商
阅读排行
Python3网络爬虫浓缩系列
visual studio 2022离线安装包制作教程
#yyds干货盘点# 前端歌谣的刷题之路-第一百三十七题-可伸缩属性
Codeforces
使用U盘制作启动盘并重装系统
编写HelloWorld程序
departments/components/add.vue
1081. 度的数量
js- day03- 将数据变成柱形图
nginx使用
leetcode 22 括号生成
webrtc-streamer实现简单rtsp视频监控
wordpress外贸独立站商城 如此简单
函数练习错题
利用TableAdapter更新数据库