Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I have a long list of strings in the same format, and I want to find the last "." character in each one, and replace it with ". - ". I've tried using rfind, but I can't seem to utilize it properly to do this. Anyone? Thanks!

share|improve this question

4 Answers

up vote 3 down vote accepted

This should do it

old_string = "this is going to have a full stop. some written sstuff!"
k = old_string.rfind(".")
new_string = old_string[:k] + ". - " + old_string[k+1:]
share|improve this answer
2  
One liners are great and all, but it would be best to do the str.rfind() just the once for efficiency. – Lattyware Jan 24 at 7:37
Thanks so much man. Going to have to study that for a minute... this is utilizing slices, right? – Adam Magyar Jan 24 at 7:41
@AdamMagyar yes, container[a:b] slices from a up to b-1 index of the container. If 'a' is omitted, then it defaults to 0; if 'b' is omitted it defaults to len(container). The plus operator just concatenates. The rfind function as you pointed out returns the index around which the replacement operation should take place. – Aditya Sihag Jan 24 at 7:44
Invoking the function rfind twice contradicts DRY (Don't Repeat Yourself) principle, and wasteful too. 2 liner would have been better. – volcano Jan 24 at 9:22

To replace from the right:

def replace_right(source, target, replacement, replacements=None):
    return replacement.join(source.rsplit(target, replacements))

In use:

>>> replace_right("asd.asd.asd.", ".", ". -", 1)
'asd.asd.asd. -'
share|improve this answer
2  
+1, I like this version. Simple and effective, as well as having no obvious inefficiencies. – Lattyware Jan 24 at 7:40
Ah I like this, a lot. Thanks also! – Adam Magyar Jan 24 at 7:44
2  
I took some liberties reworking your example for clarity and making it match the OP's example. I feel bad changing the answer so much - but the core content is the same and I feel it improves it, so hopefully should be fine. – Lattyware Jan 24 at 7:45

I would use a regex:

import re
new_list = [re.sub(r"\.(?=[^.]*$)", r". - ", s) for s in old_list]
share|improve this answer
1  
This is the only answer that works if there's no dot at all. I'd use a lookahead though: \.(?=[^.]*$) – thg435 Jan 24 at 10:18
@thg435: Good idea, thanks! – Tim Pietzcker Jan 24 at 11:18

Naïve approach:

a = "A long string with a . in the middle ending with ."
fchar = '.'
rchar = '. -'
a[::-1].replace(fchar, rchar[::-1], 1)[::-1]

Out[2]: 'A long string with a . in the middle ending with . -'

Aditya Sihag's answer with a single rfind:

pos = a.rfind('.')
a[:pos] + '. -' + a[pos+1:]
share|improve this answer
This reverses the replacement string too. Other than that, it's a repeat of root's answer, and, as I say there, pretty inefficient. – Lattyware Jan 24 at 7:39
@Lattyware You mean it reverses a? – Alex L Jan 24 at 7:41
I mean it reverses '. -' in the output. – Lattyware Jan 24 at 7:46
@Lattyware Ah, good point. Fixed – Alex L Jan 24 at 7:48
Just expecting the user to reverse the string literal by hand isn't a great idea - it is prone to mistakes and unclear. – Lattyware Jan 24 at 7:50
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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