投稿日: 2019年12月18日[Python]正規表現を使って文字列を切り取るreモジュールのsub()を使用する。import re str = '1-2-3' str = re.sub(r'^[0-9]+-', '', str) # => 2-3