1、 subst函数
格式:$(subst <from>, <to>, <text>)
功能:把字串<text>中的<from>字符串替换成<to>
返回:函数返回被替换过后的字符串。
示例:
$(subst a,the,There is a big tree)
把“There is a big tree”中的“a”替换成“the”,返回结果是“There is the big tree”。
2、
原文:https://www.cnblogs.com/utank/p/11799202.html