Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
整个下午,
我有一个带有名为 list_name 的变量的数据集。
其中一些列表名称以“Y_”为前缀(例如:HNEWCARD 与:Y_HNEWCARD)
出于分析的目的,我想将其视为同一个变量。
所以简而言之,如果变量名的前两个字符以'Y_'开头,我想删除它们。
我玩过一些修剪和 substr 但无法获得任何有效的输出!
听起来很简单,但今天它超出了我的脑海!
干杯
如果 substr(list_name,1,2)='Y_' 那么 list_name=substr(list_name,3);