vote up 2 vote down star

How can I split correctly a string containing a sentence with special chars using whitespaces as separator ? Using regex split method I cannot obtain the desired result.

Example code:

# -*- coding: utf-8 -*-
import re


s="La felicità è tutto" # "The happiness is everything" in italian
l=re.compile("(\W)").split(s)

print " s> "+s
print " wordlist> "+str(l)
for i in l:
    print " word> "+i

The output is :

 s> La felicità è tutto
 wordlist> ['La', ' ', 'felicit', '\xc3', '', '\xa0', '', ' ', '', '\xc3', '', '\xa8', '', ' ', 'tutto']
 word> La
 word>  
 word> felicit
 word> Ã
 word> 
 word> ?
 word> 
 word>  
 word> 
 word> Ã
 word> 
 word> ?
 word> 
 word>  
 word> tutto

while I'm looking for an output like:

 s> La felicità è tutto
 wordlist> ['La', ' ', 'felicità', ' ', 'è', ' ', 'tutto']
 word> La
 word>  
 word> felicità
 word>  
 word> è
 word>  
 word> tutto

To be noted that s is a string that is returned from another method so I cannot force the encoding like

s=u"La felicità è tutto"

On official python documentation of Unicode and reg-ex I haven't found a satisfactory explanation.

Thanks.

Alessandro

flag

4 Answers

vote up 3 vote down check

Your regex should be (\s) instead of (\W) like this:

l = re.compile("(\s)").split(s)

The code above will give you the exact output you requested. However the following line makes more sense:

l = re.compile("\s").split(s)

which splits on whitespace characters and doesn't give you all the spaces as matches. You may need them though so I posted both answers.

link|flag
Thanks, it works on print of single words. Why the print of list contains unicode hex code instead of decoded chars ? – alexroat Mar 15 at 11:35
It's meant to be so the output is valid Python code that you could copy and paste back in... and since you might be working in a non-Unicode environment it outputs in the most portable way possible. – Porges Mar 15 at 11:37
Thanks Andrew. you fully answered to all my doubts. – alexroat Mar 15 at 11:39
@alexroat: please accept an answer if it is helpful. – S.Lott Mar 15 at 12:01
Done, but I have a further question: why with \s ()[]- and so on are not taken as separator ? – alexroat Mar 15 at 13:29
show 2 more comments
vote up 0 vote down

Try defining an encoding for the regular expression:

l=re.compile("\W", re.UNICODE).split(s)
link|flag
It doesn't work, I've already tried that ... However the solution of Andrew Hare works well. – alexroat Mar 15 at 11:38
Have you tried without the parenthesis? – kgiannakakis Mar 15 at 11:42
Yes, but the behaviour is like the string split (it removes whitespaces) and I want to maintain them. However re.UNICODE mess up with encoding changing some characters. – alexroat Mar 15 at 13:32
vote up 0 vote down

I think it's overkill to use a regexp in this case. If the only thing you want to do is split the string on whitespace characters I recommend using the split method on the string

s = 'La felicità è tutto'
words = s.split()
link|flag
My intention is to maintain whitespaces in the list so string split is not helpful for that because it remove whitespaces and is not fully configurable as regex split. – alexroat Mar 15 at 13:25
vote up 0 vote down

Well, after some further tests on Andrew Hare answer I've seen that character as ()[]- and so on are no more considered as separator while I want to split a sentence (maintaining all the separator) in words composed with ensemble of alphanumerical values set eventually expanded with accented chars (that is, everything marked as alphanumeric in unicode). So, the solution of kgiannakakis is more correct but it miss a conversion of string s into unicode format.

Take this extension of the first example:

# -*- coding: utf-8 -*-
import re
s="(La felicità è tutto)"#no explicit unicode given string (UTF8)
l=re.compile("([\W])",re.UNICODE).split(unicode(s,'utf-8'))#split on s converted to unicode from utf8

print " string> "+s
print " wordlist> "+str(l)
for i in l:
    print " word> "+i

The output now is :

 string> (La felicità è tutto)
 wordlist> [u'', u'(', u'La', u' ', u'felicit\xe0', u' ', u'\xe8', u' ', u'tutto', u')', u'']
 word> 
 word> (
 word> La
 word>  
 word> felicità
 word>  
 word> è
 word>  
 word> tutto
 word> )
 word>

That is exactly what I'm looking for.

Cheers :)

Alessandro

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.