Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
171 views
in Technique[技术] by (71.8m points)

python 2.7 - Regex to Match Horizontal White Spaces

I need a regex in Python2 to match only horizontal white spaces not newlines.

s matches all whitespaces including newlines.

>>> re.sub(r"s", "", "line 1.
line 2
")
'line1.line2'

h does not work at all.

>>> re.sub(r"h", "", "line 1.
line 2
")
'line 1.
line 2
'

[ ] works but I am not sure if I am missing other possible white space characters especially in Unicode. Such as u00A0 (non breaking space) or u200A (hair space). There are much more white space characters at the following link. https://www.cs.tut.fi/~jkorpela/chars/spaces.html

>>> re.sub(r"[ ]", "", u"line 1.
line 2
u00A0u200A
", flags=re.UNICODE)
u'line1.
line2
xa0u200a
'

Do you have any suggestions?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I ended up using [^S ] instead of specifying all Unicode white spaces.

>>> re.sub(r"[^S
]", "", u"line 1.
line 2
u00A0u200A
", flags=re.UNICODE)
u'line1.
line2

'

>>> re.sub(r"[ ]", "", u"line 1.
line 2
u00A0u200A
", flags=re.UNICODE)
u'line1.
line2
xa0u200a
'

It works as expected.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...