Tagged Questions
0
votes
2answers
68 views
clarifications on the re.findall() method in python
I wanted to strip a string of punctuation marks and I ended up using
re.findall(r"[\w]+|[^\s\w]", text)
It works fine and it does solve my problem. What I don't understand is the details within ...
2
votes
5answers
121 views
can you write a str.replace() using dictionary values in Python?
I have to replace the north, south, etc with N S in address fields.
If I have
list = {'NORTH':'N','SOUTH':'S','EAST':'E','WEST':'W'}
address = "123 north anywhere street"
Can I for iterate over ...
0
votes
2answers
117 views
Python remove tabs and carriage lines from unicode list
I've looked at previous answers to this (python how to remove this n from string or list, remove a list item from a list and python remove whitespace in string) but can't get the solutions to work.
I ...
2
votes
1answer
139 views
Python - Removing unknown 10 character string
Im using a modified version of Eric Bidelman's/HTML5Rocks cachebust.py file for css/js. link is here
Instead of appending timestamp like
.css?2012-07-30
I modified variable to -
cachebust = ...
2
votes
1answer
235 views
Regex replace with correct spacing
I need help on some regex problem with chinese characters in python.
"拉柏多公园" is the correct form of the word, but in a text i found "拉柏 多公 园", what regex should i use to replace the characters.
...
0
votes
1answer
240 views
JavaScript, Django, and Google App Engine - Replace Text
My goal is to associate a tooltip (containing a definition) to certain words on the client side using JS.
The text is generated with Django/Python (from a GAE datastore).
To accomplish this, I need ...
2
votes
1answer
139 views
how to keep count of replaced strings
I have a massive string im trying to parse as series of tokens in string form, and i found a problem: because many of the strings are alike, sometimes doing string.replace()will cause previously ...
9
votes
5answers
25k views
Python string.replace() not replacing characters
Some background information: We have an ancient web-based document database system where I work, almost entirely consisting of MS Office documents with the "normal" extensions (.doc, .xls, .ppt). They ...
