在终端中去掉行尾的 "%" 符号,可以通过以下几种方式实现:
command > output.txt
然后使用文本编辑器或命令行工具对 output.txt
文件进行处理。
sed
命令进行字符串替换:command | sed 's/%$//'
powershell
命令进行字符串替换:command | powershell -Command "$input -replace '%$',''"
rstrip()
函数删除字符串末尾的指定字符:output = command_output.rstrip('%')
replace()
函数替换字符串中的指定字符:output = command_output.replace(/%$/g, '')
需要注意的是,以上方法仅适用于删除行尾的 "%" 符号,如果行尾还包含其他字符,需要根据具体情况进行相应的处理。
领取专属 10元无门槛券
手把手带您无忧上云