我在Linux Shell中有一个用点分隔的字符串,
$example=This.is.My.String
我想要
1.在最后一个点之前添加一些字符串,例如,我想在最后一个点之前添加“Good.Long”,所以我得到:
This.is.My.Goood.Long.String
2.获取最后一个点后面的部分,这样我就可以了
String
3.将点转换为下划线除了最后一个点,所以我会得到
This_is_My.String
如果你有时间,请解释一下,我还在学习正则表达式.
非常感谢!
最佳答案
我不知道’Linux Shell’是什么意思所以我会假设bash.此解决方案也适用于zsh,等等:
原文链接:/linux/440745.htmlexample=This.is.My.String
before_last_dot=${example%.*}
after_last_dot=${example##*.}
echo ${before_last_dot}.Goood.Long.${after_last_dot}
This.is.My.Goood.Long.String
echo ${before_last_dot//./_}.${after_last_dot}
This_is_My.String
临时变量before_last_dot和after_last_dot应该解释我对%和##运算符的使用. //,我也认为是不言自明的,但我很乐意澄清你是否有任何问题.
这不使用sed(甚至是正则表达式),而是使用bash的内置参数替换.我更喜欢每个脚本只使用一种语言,尽可能少的叉子:-)