문제

I have some missunderstanding with encoding regexp:

>>> simplejson.dumps({'title':r'\d+'})
'{"title": "\\\\d+"}'
>>> simplejson.loads('{"title": "\\\\d+"}')
{u'title': u'\\d+'}
>>> print simplejson.loads('{"title": "\\\\d+"}')['title']
\d+

So, without using print I see \\, with using print I see \. So, what the value loaded dict contains - with \\ or with \?

도움이 되었습니까?

해결책

Here is a trick: Use list to see what characters are really in the string:

In [3]: list(u'\\d+')
Out[3]: [u'\\', u'd', u'+']

list breaks up the string into individual characters. So u'\\' is one character. (The double backslash in u'\\' is an escape sequence.) It represents one backslash character. This is correct since r'\d+' also has only one backslash:

In [4]: list(r'\d+')
Out[4]: ['\\', 'd', '+']
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top