I have the string U, it's contents are variable. I'd like to make it a raw string. How do I go about this?
Something similar to the r'' method.
U = str(var)
|
raw strings apply only to string literals. they exist so that you can more conveniently express strings that would be modified by escape sequence processing. This is most especially useful when writing out regular expressions, or other forms of code in string literals. if you want a unicode string without escape processing, just prefix it with |
|||||||||
|
|
Raw strings are not a different kind of string. They are a different way of describing a string in your source code. Once the string is created, it is what it is. |
|||
|
|
|
i believe what you're looking for is the str.encode("string-escape") function. For example, if you have a variable that you want to 'raw string':
I was searching for a similar solution and found the solution via: casting raw strings python |
|||
|
|
bytestype? – Greg Hewgill Dec 11 '10 at 5:06