I am writing a program in python and have some question (I am 100% new to python):

import re

rawData = '7I+8I-7I-9I-8I-'

print len(rawData)

rawData = re.sub("[0-9]I\+","",rawData)
rawData = re.sub("[0-9]I\-","",rawData)

print rawData
  1. How to merge the 2 regex into one using |? It means it will get rid of both 9I- and 9I+ using just one regex operation.
  2. Does len(rawData) return the length of rawData is byte?

Thank you.

link|improve this question

4  
It's as simple as "[0-9]I[+-]" – Gareth Rees Jul 1 '11 at 15:59
Python 2.x or Python 3? – F.C. Jul 1 '11 at 16:09
In Python 2.x rawData would be just some bytes but in Python 3 it would be Unicode text. – F.C. Jul 1 '11 at 16:14
feedback

3 Answers

up vote 5 down vote accepted

See the difference:

$ python3
Python 3.1.3 (r313:86834, May 20 2011, 06:10:42) 
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> len('día')   # Unicode text
3
>>> 

$ python
Python 2.7.1 (r271:86832, May 20 2011, 17:19:04) 
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> len('día')   # bytes
4
>>> len(u'día')  # Unicode text
3
>>>


Python 3.1.3 (r313:86834, May 20 2011, 06:10:42) 
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> len(b'día')
  File "<stdin>", line 1
SyntaxError: bytes can only contain ASCII literal characters.
>>> len(b'dia')
3
>>> 
link|improve this answer
Wow. I never knew that :( I am using python 2.6.5 on the server. – Noobie Jul 1 '11 at 16:36
Then how do you get len in bytes in python 3? Is there an universal way of getting the length in bytes of a string in both python 2 and python 3? – Noobie Jul 1 '11 at 16:40
1  
In Python 3, if you want bytes you must use b'bytes' – F.C. Jul 1 '11 at 17:17
feedback

Why don't you take a different approach. With replace method?

link|improve this answer
feedback

len refers to the number of characters when applied to a unicode string (this is nuanced, other answers flush that out more), bytes in a encoded string, items in a list (or set, or keys in a dictionary)...

rawData = re.sub("[0-9]I(\+|-)","",rawData)
link|improve this answer
Is one character 1 byte? – Noobie Jul 1 '11 at 16:00
I recommend you read this: joelonsoftware.com/articles/Unicode.html – MRAB Jul 1 '11 at 17:05
@MRAB I've read it. as F.C. put it len('día') is 3 in Python 3 is 3, while it is 4 in Python 2.x. I use Python 3 primarily. "encoded" did nor refer to unicode (used the wrong word there), I was referring to strings such as: '\x03'. While that may appear to have a length of 4, that only has a len of 1 (as it is only one character when printed) – cwallenpoole Jul 1 '11 at 17:31
feedback

Your Answer

 
or
required, but never shown

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