「Python3.9」urllib.parse.unquote_plus()関数の使い方

環境
Python 3.9.13
Windows 11 Pro 21H2 64bit
PyCharm 2022.2.1 (Community Edition)

構文
urllib.parse.unquote_plus(string, encoding=’utf-8′, errors=’replace’)
unquote() と似ていますが、HTML フォームの値のアンクオートのために「+」を空白に置き換えます。
string は str でなければなりません。
urllib.parse.unquote_plus()は+を空白に置き換えます。それ以外はurllib.parse.unquote()と同じです。

使用例

# coding: utf-8
import urllib.parse

str ='study+skill'
resA = urllib.parse.unquote(str)
print(resA)

resB = urllib.parse.unquote_plus(str)
print(resB)

実行結果
study+skill
study skill

Python

Posted by arkgame