Search Results

8
votes

In python how to I verify that a string only contains letters, numbers, underscores and dashes?

[Edit] There's another solution not mentioned yet, and it seems to outperform the others given so far in most cases. Use string.translate to replace all valid characters in the string, and …
20
votes

Splitting a semicolon-separated string to a dictionary, in Python

There's no builtin, but you can accomplish this fairly simply with a generator comprehension: s= "Name1=Value1;Name2=Value2;Name3=Value3" dict(item.split("=") for item in s.split("; …
9
votes

What is the most efficient way in Python to convert a string to all lowercase stripping out all non-ascii alpha characters?

Another solution (not that pythonic, but very fast) is to use string.translate - though note that this will not work for unicode. It's also worth noting that you can speed up …
10
votes

How do I execute a string containing Python code in Python?

For statements, use exec ie. >>> mycode = 'print "hello …
1
vote

Most Efficient Way to Find Whether a Large List Contains a Specific String (Python)

Others have given you the in-memory way using set(), and this is generally going to be the fastest way, and should not tax your memory for a 60k word dataset (a few MiBs at most). You should be ab …
5
votes

Strings and file

You can do this with string formatting operators f=open('filename.txt','w') for item in aList: …
2
votes

A Python buffer that you can truncate from the left?

A deque will be efficient if left-removal operations are frequent (Unlike using a list, string or buffer, …
2
votes

Convert Unicode to String in Python (containing extra symbols)

If you have a unicode string, and you want to write this to a file, or other serialised form, you must first encode it into a particular representation that can be stored. There are sever …