「Python」strip()メソッドで先頭と末尾の文字列を削除するサンプル
書式
文字列.strip(削除文字列)
サンプルコード
#!/usr/bin/ruby # -*- coding: UTF-8 -*- target = "STA-12345ST" res = target.strip("ST") print(res)
実行結果
>python test.py
A-12345
Coding Changes the World
書式
文字列.strip(削除文字列)
サンプルコード
#!/usr/bin/ruby # -*- coding: UTF-8 -*- target = "STA-12345ST" res = target.strip("ST") print(res)
実行結果
>python test.py
A-12345