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
107 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
125 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
112 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 …
1
vote
3answers
71 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.
0
votes
5answers
117 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 …
12
votes
6answers
1k views
Standard way to embed version into python package?
Hey everyone,
Is there a standard way to associate version string with a python package in such way that I could do the following?
import foo
print foo.version
I would imagine there's some way to …
2
votes
4answers
59 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
>>> …
3
votes
7answers
243 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
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
3answers
75 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 = …
4
votes
5answers
184 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
153 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 …
-1
votes
2answers
55 views
Data extraction and manipulation in jython
For a given file
For ex : 11 ,345 , sdfsfsfs , 1232
i need to such above records from a file , read 11 to delimiter and strip the white space and store in the another file , similarly 345 to …
0
votes
2answers
88 views
String Conversion
Hi i have string
s='This is sample'
i need to convert like this
s='"This is sample"'
output="This is sample"
how to do this in dynamic
Thanks in advance
