Closed
Description
Pandas version checks
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pandas.
I have confirmed this bug exists on the main branch of pandas.
Reproducible Example
# Note the blank space in <b>bar </b>
str = """
<top>
<a>
<b>foo</b>
<c>
<d>1</d>
<e>2</e>
</c>
</a>
<a>
<b>bar </b>
<c>
<d>3</d>
<e>4</e>
</c>
</a>
</top>
"""
import pandas as pd
print("bar" in pd.read_xml(str, xpath='//a')['b'].values) # True
print("bar " in pd.read_xml(str, xpath='//a')['b'].values) # False
pd.read_xml(str, xpath='//c[../b="bar "]') # works
pd.read_xml(str, xpath='//c[../b="bar"]') # fails
Issue Description
The content of text XML nodes is stripped of spaces in the output of pd.read_xml()
, but not when processing. This inconsistency is unexpected and requires the user to implement additional logic.
Expected Behavior
I expect consistent behaviour, which is either:
print("bar" in pd.read_xml(str, xpath='//a')['b'].values) # False
print("bar " in pd.read_xml(str, xpath='//a')['b'].values) # True
pd.read_xml(str, xpath='//c[../b="bar "]') # works
pd.read_xml(str, xpath='//c[../b="bar"]') # fails
or
print("bar" in pd.read_xml(str, xpath='//a')['b'].values) # True
print("bar " in pd.read_xml(str, xpath='//a')['b'].values) # False
pd.read_xml(str, xpath='//c[../b="bar "]') # fails
pd.read_xml(str, xpath='//c[../b="bar"]') # works
Installed Versions
INSTALLED VERSIONS
------------------
commit : 965ceca9fd796940050d6fc817707bba1c4f9bff
python : 3.11.4.final.0
python-bits : 64
OS : Linux
OS-release : 5.15.0-1029-azure
Version : #36~20.04.1-Ubuntu SMP Tue Dec 6 17:00:26 UTC 2022
machine : x86_64
processor : x86_64
byteorder : little
LC_ALL : None
LANG : en_CA.UTF-8
LOCALE : en_CA.UTF-8
pandas : 2.0.2
numpy : 1.25.0
pytz : 2023.3
dateutil : 2.8.2
setuptools : 67.7.2
pip : 23.1.2
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : 4.9.2
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : None
IPython : 8.14.0
pandas_datareader: None
bs4 : None
bottleneck : None
brotli : None
fastparquet : None
fsspec : None
gcsfs : None
matplotlib : None
numba : None
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : None
pyreadstat : None
pyxlsb : None
s3fs : None
scipy : None
snappy : None
sqlalchemy : None
tables : None
tabulate : None
xarray : None
xlrd : None
zstandard : None
tzdata : 2023.3
qtpy : None
pyqt5 : None