我正在尝试从excel中的字符串中删除一个字符。如何从指定的字符串中删除第一个和最后一个字符?在Excel表格中,每列都有数据。一些测试以$$字符开头和结尾,我只需从字符串中删除第一个字符($)和最后一个字符($)。
示例:单元格1:
$$hello world$$. World is beautiful. $$where there is will there is a way.$$ money makes many things.
应代表:
$hello world$. World is beautiful. $where there is will there is a way. $money makes many things$.
全部谢谢
答案 0 :(得分:4)
您可以使用SUBSTITUTE()公式
=SUBSTITUTE(A1,"$$","$")
答案 1 :(得分:0)
作为一个非公式化的替代方案是突出你想要修改的单元格并进行查找和替换(crtl + f),其中找到什么:$$并替换为:$ ...取决于多少您尝试编辑的字符串可以用于更大的数量,更容易...