str.replace_all
str.replace_all
ソース文字列にターゲット文字列が出現する度に置換文字列で置き換えられます。
str.replace_all(source, target, replacement) → string
str.replace_all(source, target, replacement) → series[string]
戻り
処理された文字列。
引数
source (series[string]) ソース文字列
target (series[string]) 置換される文字列
replacement (series[string]) ターゲット文字列が出現する度に置換される文字列