fork download
  1. import re
  2.  
  3. s="dbt とは何をするツールなのか?2022.02.09data build tool|dbt|Tech|こんにちは、ソフトウェアエンジニアの冨田です。"
  4. pattern = r"\d{4}\.\d{2}\.\d{2}.*?\bTech\|"
  5. print(re.sub(pattern, '', s))
  6.  
Success #stdin #stdout 0.04s 9672KB
stdin
Standard input is empty
stdout
dbt とは何をするツールなのか?こんにちは、ソフトウェアエンジニアの冨田です。