vote up 2 vote down star

I'm trying to add a space before every capital letter, except the first one.

Here's what I have so far, and the output I'm getting:

>>> tex = "ThisFileName.txt"
>>> re.sub('[A-Z].', ' ', tex)
' his ile ame.txt'

I want: 'This File Name.txt'

(It'd be nice if I could also get rid of .txt, but I can do that in a separate operation.)

flag

4 Answers

vote up 10 vote down check

Key concept here is backreferences in regular expressions:

import re
text = "ThisFileName.txt"
print re.sub('([a-z])([A-Z])', r'\1 \2', text)
# Prints: "This File Name.txt"

For pulling off the '.txt' in a reliable way, I recommend os.path.splitext()

import os
filename = "ThisFileName.txt"
print os.path.splitext(filename)
# Prints: ('ThisFileName', '.txt')
link|flag
vote up 2 vote down
re.sub('([a-z])([A-Z])', '\\1 \\2', 'TheFileName.txt')

EDIT: StackOverflow eats some \s, when not in 'code mode'... Because I forgot to add a newline after the code above, it was not interpreted in 'code mode' :-((. Since I added that text here I didn't have to change anything and it's correct now.

link|flag
add another backslash: re.sub('([a-z])([A-Z])', '\\1 \\2', text)...the one is interpreted as an escape sequence...from the documentation: Unless an 'r' or 'R' prefix is present, escape sequences in strings are interpreted according to rules similar to those used by Standard C. – Adam Bernier Feb 5 at 16:38
downvoting until the error is fixed... – Triptych Feb 8 at 17:29
was not really my fault I think, fixed I anyhow. (See my EDIT: comment) – Johannes Weiß Feb 8 at 17:40
ahh: and thanks for notifying me. I would not have looked at this post again. – Johannes Weiß Feb 8 at 17:45
um - you didn't revenge-downvote me did you? – Triptych Feb 8 at 17:46
show 1 more comment
vote up 2 vote down

Another possible regular expression using a look behind:

(?<!^)([A-Z])
link|flag
vote up 1 vote down

It is not clear what you want to do if the filename is Hello123There.txt. So, if you want a space before all capital letters regardless of what precedes them, you can:

import re

def add_space_before_caps(text):
    "Add a space before all caps except at start of text"
    return re.sub(r"(?<!^)(?=[A-Z])", " ", text)

>>> add_space_before_caps("Hello123ThereIBM.txt")
'Hello123 There I B M.txt'
link|flag

Your Answer

Get an OpenID
or

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