最佳答案
在我的bash
脚本中,我有一个字符串及其前缀/后缀。我需要从原始字符串中删除前缀/后缀。
例如,假设我有以下值:
string="hello-world"
prefix="hell"
suffix="ld"
如何得到以下结果?
result="o-wor"