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)
私の分析の目的のために、これを同じ変数として扱いたいと思います。
つまり、変数名の最初の2文字が「Y_」で始まる場合は削除したいと思います。
いくつかのトリムとsubstrを試してみましたが、有効な出力を取得できません。
簡単そうに聞こえますが、今日は頭を悩ませました。
乾杯
substr(list_name、1,2)='Y_'の場合、list_name = substr(list_name、3);