Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
8answers
3k views

Raw Strings in Java?

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 ...
6
votes
3answers
3k 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 ...
4
votes
2answers
155 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 ...
3
votes
4answers
297 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?
2
votes
2answers
255 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?
0
votes
2answers
204 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. ...
0
votes
3answers
647 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 ...