2
votes
4answers
103 views
How to iterate over a string using a buffer (python)
Hi all,
I'm trying to find some code that, given a string, will allow me to iterate over each line using the for loop construct, but with the added requirement that separate for loop constructs will …
0
votes
4answers
108 views
Regular Expression to split on specific character ONLY if that character is not in a pair
After finding the fastest string replace algorithm in this thread, I've been trying to modify one of them to suit my needs, particularly this one by gnibbler.
I will explain the problem again here, …
7
votes
12answers
1k views
Mass string replace in python?
Say I have a string that looks like this:
str = "The &yquick &cbrown &bfox &Yjumps over the &ulazy dog"
You'll notice a lot of locations in the string where there is an …
2
votes
7answers
108 views
Convert string / character to integer in python
I want to convert a single character of a string into an integer, add 2 to it, and then convert it back to a string. Hence, A becomes C, K becomes M, etc.
4
votes
6answers
130 views
Python string pattern recognition/compression
I can do basic regex alright, but this is slightly different, namely I don't know what the pattern is going to be.
For example, I have a list of similar strings:
lst = ['asometxt0moretxt', …
-1
votes
4answers
114 views
Python joining strings
I have run into a problem joining two strings in Python.
I have some code that is like this:
for line in sites:
site = line
for line in files:
url = site+line
That should …
0
votes
5answers
124 views
Remove whitespace in Python using string.whitespace
Python's string.whitespace is great:
>>> string.whitespace
'\t\n\x0b\x0c\r '
How do I use this with a string without resorting to manually typing in '\t|\n|... etc for regex?
For …
3
votes
7answers
249 views
Find the nth occurrence of substring in a string
This seems like it should be pretty trivial, but I am new at Python and want to do it the most Pythonic way.
I want to find the n'th occurrence of a substring in a string.
There's got to be …
1
vote
3answers
72 views
Convert single-quoted string to double
I want to check whether the given string is single- or double-quoted. If it is single quote I want to convert it to be double quote, else it has to be same double quote.
4
votes
5answers
185 views
Explain Python .join()
I'm pretty new to Python and am completely confused by .join() which I have read is the preferred method for concatenating strings.
I try:
strid = repr(595)
print array.array('c', …
3
votes
6answers
154 views
PEP8 - 80 Characters - Big Strings
Due to the sheer annoyance of figuring out what to Google, I've decided to risk what any reputation I had to ask this rather simple question.
As PEP8 suggests keeping below the 80 column rule for …
2
votes
3answers
78 views
How do I un-escape a backslash-escaped string in python?
Suppose I have a string which is a backslash-escaped version of another string. Is there an easy way, in Python, to unescape the string? I could, for example, do:
>>> escaped_str = …
3
votes
6answers
93 views
Convert and merge strings into a list in Python
In Python I have four strings that include the formatting of a list:
line1 ="['a.b.c','b.c.a','c.d.e']"
line2 ="['def','efg']"
line3 ="['f']"
line4 ="['g']"
How do I merge them all so I get a valid …
1
vote
3answers
46 views
How to do a string replace in a urlencoded string
I have a string like x = "http://query.yahooapis.com/v1/public/yql?q=select%20owner%2Curls%20from%20flickr.photos.info%20where%20photo_id%3D'%s'&format=json"
If I do x % 10 that fails as there …
2
votes
4answers
61 views
How to override ord behaivour in Python for str childs?
I have this class:
class STR(str):
def __int__(self):
return 42
If i use it in the promt like this:
>>> a=STR('8')
>>> ord(a)
56
>>> int(a)
42
>>> …
