re re.match() 抽出 使い方 obj = re.match(抽出文字,対象) 「対象」の先頭文字を抽出します import re txt='abc-abc-xyz' obj=re.match('abc',txt... re