The rawstring tag has no wiki summary.
1
vote
2answers
28 views
How to un-escape special characters in Python 3? [duplicate]
x='\r\n\t\t\t\t'
print(x)
The above code isn't working cos maybe of it is not recognising the special characters. So you could please help?
1
vote
1answer
30 views
How to format raw string with different expressions inside?
Let's say, we want to catch something with regex, using rawstring to define the pattern, which pattern has repeating elements, and variables inside. And we also want to use the format() string ...
1
vote
2answers
108 views
How to match a new line character in Python raw string
I got a little confused about Python raw string. I know that if we use raw string, then it will treat '\' as a normal backslash (ex. r'\n' would be '\' and 'n'). However, I was wondering what if I ...
5
votes
2answers
118 views
How do I get the raw representation of a string in Python?
I am making a class that relies heavily on regular expressions.
Let's say my class looks like this:
class Example:
def __init__(self, regex):
self.regex = regex
def __repr__(self):
...
1
vote
1answer
268 views
In context of Python Raw string
My Python version is:
~$ python --version
Python 2.6.6
I tried following in Python (I wants to show all):
1: \ use as escape sequence
>>> str('Let\'s Python')
"Let's ...
2
votes
3answers
184 views
why can't I end a raw string with a \
I am confused here, even though raw strings convert every \ to \\ but when this \ appears in the end it raises error.
>>> r'so\m\e \te\xt'
'so\\m\\e \\te\\xt'
>>> r'so\m\e \te\xt\'
...
5
votes
3answers
578 views
Does clojure have raw string?
In python, I can prefix a "r" to a string literal (raw string) to tell the interpreter not translate special char in the string:
>>> r"abc\nsdf#$%\^"
r"abc\nsdf#$%\^"
Is there a way to do ...
0
votes
3answers
997 views
reading raw string from file in C#
I have the following raw-string literal : @"some text ""here"" and some more text"
Everything works fine when I have this assigned to a string variable in a program. But when I put this string - "some ...
4
votes
2answers
243 views
When CPP line splicing is undone within C++0x raw strings, is a conforming implementation required to preserve the original newline sequence?
The latest draft of C++0x, n3126, says:
Each instance of a backslash character (\) immediately followed by a new-line character is deleted, splicing physical source lines to form logical source ...
2
votes
2answers
486 views
How to bind data in heredoc of scala?
val name = "mike"
val str = """Hi, {name}!"""
println(str)
I want it output the str as Hi, mike!, but failed. How to do this?
5
votes
4answers
793 views
How to output “”“ in the ”here docs" of scala?
In scala, "here docs" is begin and end in 3 "
val str = """Hi,everyone"""
But what if the string contains the """? How to output Hi,"""everyone?
0
votes
2answers
371 views
Passing string with (accidental) escape character loses character even though it's a raw string
I have a function with a python doctest that fails because one of the test input strings has a backslash that's treated like an escape character even though I've encoded the string as a raw string.
...
30
votes
4answers
15k views
What exactly do “u” and “r”string flags in Python, and what are raw string litterals?
While asking this question, I realized I didn't know much about raw strings. For somebody claiming to be a django trainer, this suck.
I know what an encoding is, and I know what "u" alone does since ...
0
votes
3answers
1k views
Python raw strings and unicode : how to use Web input as regexp patterns?
EDIT : This question doesn't really make sense once you have picked up what the "r" flag means. More details here.
For people looking for a quick anwser, I added on below.
If I enter a regexp ...
21
votes
9answers
7k views
Raw Strings in Java - for regex in particular
Is there any way to use raw strings in Java (without escape sequences)?
(I'm writing a fair amount of regex code and raw strings would make my code immensely more readable)
I understand that the ...