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!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This should do it
|
|||||||||||
|
|
To replace from the right:
In use:
|
|||||||||||
|
|
I would use a regex:
|
|||||||
|
|
Naïve approach:
Aditya Sihag's answer with a single
|
|||||||||||
|