0
votes
5answers
108 views
How to use “\” in a string without making it an escape sequence - C#?
I'm sure this is something really basic that I don't know but how do I make it not recognize "\" as an escape sequence inside a string
I'm trying to type in a path and it thinks i …
1
vote
2answers
378 views
Displaying a Downward Triangle in VB.NET ▼ (U+25BC)
Hey, I'm trying to figure out how to display the ▼ character properly in a .NET winform application.
I am creating a custom control, and for the button, I want this character to …
1
vote
2answers
48 views
Enable bash output color with Lua script
I have several Lua scripts that run experiences and output a lot of information, in text files and in the console. I'd like to add some colors in the console output, to make it mor …
0
votes
1answer
60 views
How to store “<” in an XML attribute for configuration section?>
Hello,
I'm using a custom configuration section in my web.config file for ASP.NET
One of my fields is:
<add percent="5" label="<5%" />
As you can see in label I h …
2
votes
2answers
76 views
Get hex or octal value from escaped string
I'm working on an application that needs to accept posted data from a form and process it. One step of this process is to unescape the data that comes in. One issue that I'm facing …
7
votes
1answer
145 views
Escape sequence for ? in c++
Hi, I was looking at the escape sequences for characters in strings in c++ and I noticed there is an escape sequence for a question mark. Can someone tell me why this is? It just …
0
votes
1answer
71 views
how to escape special characters in jasperreports ?
how to escape special characters in jasperreports ?
I want to escape special characters like :- é, â, è, ^, @ in jasper reports, so is there any way we can escape this characters …
0
votes
4answers
114 views
Ruby: how to match a double quote in a regexp
I am trying to remove some double quotes (") characters from a text file using a Ruby one liner, with little success.
I have tried the following, and some variations, without succ …
2
votes
2answers
101 views
Python: json.loads chokes on escapes
I have an application that is sending a JSON object (formatted with Prototype) to an ASP server. On the server, the Python 2.6 "json" module tries to loads() the JSON, but it's ch …
4
votes
4answers
628 views
C# Command-Line Parsing of Quoted Paths and Avoiding Escape Characters
How is it possible to parse command-line arguments that are to be interpreted as paths? args[] contains strings that are automatically joined if they are quoted, e.g.:
example.e …
3
votes
1answer
152 views
How to hide ANSI colour escape codes from fmt
I use (GNU) fmt to format longer texts with nice (‘optimal’) line breaks. However, if the text contains any ANSI colour escape sequences (which are never displayed, and only serve …
0
votes
2answers
714 views
Javascript - Replacing the escape character in a string literal
Hi everyone,
I am trying to replace the backslash (escape) character in a Javascript string literal.
I need to replace it with a double backslash so that I can then do a redirec …
5
votes
6answers
2k views
Colorize logs in eclipse console
Is there a way to colorize parts of logs in the eclipse console. I know I could send to error and standard streams and color them differently but I'm more looking someting in the …
1
vote
6answers
225 views
Is there a faster way to escape a string?
I have a method that looks like this:
public static String escape(String text)
{
String r = replace(text, "\\", "\\\\");
r = replace(r, "\r", "\\r");
r = replace(r, "\b", …
1
vote
2answers
341 views
What are all the escape characters in Java?
I know some of the escape characters in Java, e.g.
\n : Newline
\r : Carriage return
\t : Tab
\\ : Backslash
...
Is there a complete list somewhere?
