replaceメソッド
🟢 Python
投稿日: 2026年4月11日12:39
tel="03-1234-5678"
tel_without_hyphen=tel.replace("-","")
vbaだと関数
tel_without_hyphen=replace(tel,"-","")
tel_without_hyphen=replace(tel,"-","")
No Comment
tel="03-1234-5678"
tel_without_hyphen=tel.replace("-","")