Tagged Questions
The backslashes tag has no wiki summary.
7
votes
5answers
2k views
Backslashes in Single quoted strings vs. Double quoted strings in Ruby?
I'm a little confused about when to use single quoted strings versus double quoted strings. I've noticed that if I put a variable inside a single quoted string, it doesn't get interpreted. Also, if I ...
5
votes
5answers
2k views
Weird backslash substitution in Ruby
I don't understand this Ruby code:
>> puts '\\ <- single backslash'
# \ <- single backslash
>> puts '\\ <- 2x a, because 2 backslashes get replaced'.sub(/\\/, 'aa')
# aa <- ...
5
votes
5answers
3k views
C++ include header path change windows to linux
I am porting a application written in c++ from windows to Linux. I have a problem with the header files path. Windows uses "\" and while Linux uses "/" . I am finding it cumbersome to change this in ...
4
votes
1answer
86 views
How many backslashes are required to escape regexps in emacs' “Customize” mode?
I'm trying to use emacs' customize-group packages to tweak some parts of my setup, and I'm stymied. I see things like this in my .emacs file after I make changes with customize:
...
4
votes
8answers
2k views
So what IS the right direction of the path's slash (/ or \)?
it seems windows insist on writing this slash on files' path \, while .net's URI class writing this the other way?
Is there any right way? that is accepted even in the most primitive systems?
And ...
3
votes
4answers
85 views
Converting backslashes into forward slashes using javascript does not work properly?
I have a javascript variable comming from legacy system with backslashes into forward slashes:
'/46\465531_Thumbnail.jpg'
and I am trying to convert into this:
'/46/465531_Thumbnail.jpg'.
There ...
2
votes
4answers
94 views
Ruby \' in a string
I am using Ruby 1.8.7, trying to generate a string with the \' characteres, in order to create a script for running in MySQL. The result should be like this:
INSERT INTO table (name, description) ...
2
votes
4answers
52 views
Form shows '/' in every field
Hi my php script to send mail is as follows :
<?php
if (isset($_POST['submit']))
{$to='info@animalswecare.com';
$fname=stripslashes($_POST['fname']);
...
2
votes
2answers
164 views
How do I remove a \ from a string in python
I'm having trouble getting a replace() to work
I've tried my_string.replace('\\', '') and re.sub('\\', '', my_string), but neither one works.
I thought \ was the escape code for backslash, am I ...
2
votes
1answer
509 views
Replacing backslashes in Python strings
I have some code to encrypt some strings in Python. Encrypted text is used as a parameter in some urls, but after encrypting, there comes backslashes in string and I cannot use single backslash in ...
2
votes
3answers
2k views
Escaping Strings in JavaScript
Does JavaScript have a built-in function like PHP's addslashes (or addcslashes) function to add backslashes to characters that need escaping in a string?
For example, this:
This is a demo string ...
1
vote
4answers
219 views
I want one backslash - not two
I have a string that after print is like this: \x4d\xff\xfd\x00\x02\x8f\x0e\x80\x66\x48\x71
But I want to change this string to "\x4d\xff\xfd\x00\x02\x8f\x0e\x80\x66\x48\x71" which is not printable ...
1
vote
1answer
759 views
net.sf.json.JSONObject adds backslashes where it's not expected?
I'm loosing my hair trying to figure out why net.sf.json.JSONObject add extra backslash where it shouldn't on my java code :
JSONObject obj = new JSONObject ();
obj.element ("column_name", "<a ...
1
vote
5answers
880 views
How can I canonicalize Windows file paths in Perl?
Update:
I can make this a simpler problem to solve:
I want to figure out what the correct regex would be to substitute any single occurrence of a back slash with two back slashes.
I want to turn ...
1
vote
1answer
1k views
How to avoid double backslash in MySQL's SELECT INTO OUTFILE
In MySQL, the following:
SELECT '\\' INTO OUTFILE 'c:/temp/backslash.dump';
writes two backslashes to the file, which makes sense.
Trying to dump a single backslash, I changed SQL_MODE, like ...
1
vote
7answers
3k views
Echo A Link, Get A Trailing Slash?
I've discovered that any time I do the following:
echo '<a href="http://" title="bla">huzzah</a>';
I end up with the following being rendered to the browser:
<a href="http:///" ...
1
vote
3answers
8k views
PHP replace double backslashes “\\” to a single backslash “\”
Okay so im working on this php image upload system but for some reason internet explorer turns my basepath into the same path, but with double backslashes instead of one; ie:
C:\\Documents and ...
0
votes
1answer
54 views
prevent php from removing backslashes from output
On my site, I have a PHP script which takes multiple source files (HTML,CSS, and javascript), optimizes them, embeds them into a page, and caches them (basically compiling my website). Recently, I ...
0
votes
3answers
102 views
Is it possible to turn off magic quotes without an .htaccess or a php.ini file?
One of my clients is hosting their site on freeservers.com ( a host that should be avoided at all costs ).
The host does not allow .htaccess files, and has no editable php.ini file on the server to ...
0
votes
1answer
114 views
How to replace backward slash followed by 't' or any other alphabet or character in escape chacter in file path to forward slash in java?
I'm importing a CSV file to MySQL database. This can be done using java.mysql support for forward slash in file path. If user gives the path
String filepath=" c:\upload\date\csv\sample.csv";
we can ...
0
votes
4answers
86 views
How to escape the backslashes and the automatically generated escape character in file path in java
I have very small and simple problem but I am not getting solutions on it.
Actually I am getting a CSV file path using file chooser.
I am entering the data in this csv file in to database using load ...
0
votes
1answer
226 views
Java String vs. Command Line Argument
Why does it happen that a command line argument passed to a Java class seems to be automagically escaped while in an instantiated String object the escape character () is seemingly ignored.
For ...
0
votes
2answers
205 views
python replace backslashes to slashes
How can I escape backslashe in string: 'pictures\12761_1.jpg'?
I know about raw string.
But how can I convert str to raw if I take 'pictures\12761_1.jpg' value from xml file for example?
0
votes
1answer
189 views
[Python]: Double backslashes in command
SUMMARY:
I want to execute a pskill.exe command in python.
Tried it in a dos-prompt:
C:\Users\JohanSA\Documents\EclipseWorkspace\ProdataATFBASE\src\resources\pskill.exe \localhost -t 11780
--> work ...
0
votes
1answer
71 views
Decoder for slashed-escaped string
What is the correct way in PHP to deal with decoding strings, such as these:
Test1 \\ Test2 \n Test3 \\n Test4 \abc
The desired output is:
Test \ Test2 (linebreak) Test3 \n Test4 abc
One thing ...