string map ?-nocase? mapping string
Replaces substrings in string based on the key-value pairs in mapping. mapping is a list of key value key value … as in the form returned by array get. Each instance of a key in the string will be replaced with its corresponding value. If -nocase is specified, then matching is done without regard to case differences. Both key and value may be multiple characters. Replacement is done in an ordered manner, so the key appearing first in the list will be checked first, and so on. string is only iterated over once, so earlier key replacements will have no affect for later key matches. For example,
string map {abc 1 ab 2 a 3 1 0} 1abcaababcabababc
will return the string 01321221.
Note that if an earlier key is a prefix of a later one, it will completely mask the later one. So if the previous example is reordered like this,
string map {1 0 ab 2 a 3 abc 1} 1abcaababcabababc
it will return the string 02c322c222c.
用法:string map ?-nocase? charMap string
如string map {1 “”} 121212321; => 22232
————————————————
版权声明:本文为优快云博主「iteye_7333」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.youkuaiyun.com/iteye_7333/article/details/82043990
string map函数用于根据mapping中的键值对替换字符串中的子串。如果指定-nocase选项,匹配将忽略大小写。键和值都可能是多个字符。替换按顺序进行,先出现的键先检查。注意,如果早期的键是后期键的前缀,它会完全屏蔽后期键。
845

被折叠的 条评论
为什么被折叠?



