The backslash character \ (not to be confused with slash /) is used in many languages to quote the next character, i.e. to make it lose its special meaning. It is also the directory separator in file paths under DOS and Windows.

learn more… | top users | synonyms

0
votes
2answers
31 views

Echo and backslash (bash)

I'm trying to make a function in my ~/.bashrc file that uses an echo command to pass its arguments through the pipeline. It works, but when I try to input a '\' character it disappears. If I type \\ ...
0
votes
1answer
17 views

pdo insert getting \ in the url

I am trying to insert html by tinymce. For example: <img title="q" src="../kcfinder/upload/image/3b5330574c883fe1040eaddeb596ea20.jpg" alt="q" width="640" height="480" /> the PDO makes this ...
0
votes
3answers
43 views

Javascript matching “\” backslash in a string

I am using below code to match words in a comma separated string <script> var str="testdata, W3\standard,"; var patt=/\bW3\\standard/g; document.write(str.match(patt) ); </script> But ...
0
votes
0answers
37 views

PHP odbc prepare SQL - Statement does not work with a User id including Backslash

Normally all prepared SQL Statements works fine - except one. I found out, that the problem is the backslash. If I delete the backslash in the table-data and in the statement, it works fine. What can ...
-2
votes
6answers
88 views

Preserving backslashes in Perl strings

Is there a way in Perl to preserve and print all backslashes in a string variable? For example: $str = 'a\\b'; The output is a\b but I need a\\b The problem is can't process the string in any ...
2
votes
1answer
50 views

Purpose of a backslash at the end of a line

Just found the following module import in a Python code: from sqlalchemy.ext.declarative import declarative_base,\ AbstractConcreteBase I am curious about the backslash \ at the end of the ...
0
votes
2answers
31 views

Replacing single backslashes with double backslashes in php

I came across a strange problem in my PHP programming. While using the backtrace function to get the last file the PHP compiler was working with. It would give it to me the path using backslashes. I ...
0
votes
5answers
71 views

Android '\' special character

I have an android application where I have to find out if my user entered the special character '\' on a string. But i'm not obtaining success by using the string.replaceAll() method, because Java ...
-1
votes
1answer
81 views

How to add backslashes to Json response in Java?

I want to used this but the string that I am getting from a server it comes in the Json regular form. I meant without the \ JSONParser parser=new JSONParser(); ...
1
vote
2answers
41 views

How to replace backslashes with forward slashes in a malformed string with Javascript?

// malformed string var str = "C:\Windows\Fonts"; // C:WindowsFonts alert(str.replace(/\\/g, "/")); How do I correctly replace \ with / so I can get C:/Windows/Fonts?
1
vote
1answer
37 views

Remove backslash instances from a file in Python

Okay, this may sound like a stupid question, but I can't solve this problem... I need remove all instances of backslash from downloaded file... But, output.replace("\","") doesn't work. Python ...
1
vote
1answer
88 views

Changing “/” into “\” in R

I need to change "/" into "\" in my R code. I have something like this: tmp <- paste(getwd(),"tmp.xls",sep="/") so my tmp is c:/Study/tmp.xls and I want it to be: c:\Study\tmp.xls Is it ...
0
votes
1answer
51 views

Mercurial backslash forward slash issue

We have a sub-repository in mercurial that was created using hg convert. For about three weeks we've had people modifying and checking in changes (using Tortoise under Windows) before we noticed that ...
3
votes
2answers
115 views

Replacing = with '\x' and then decoding in python

I fetched the subject of an email message using python modules and received string '=D8=B3=D9=84=D8=A7=D9=85_=DA=A9=D8=AC=D8=A7=D8=A6=DB=8C?=' I know the string is encoded in 'utf-8'. Python has ...
-1
votes
2answers
38 views

Adding \ before space sed shell [closed]

I have string /home/user/My Documents and i need to make this /home/user/My\ Documents . How please ?
0
votes
4answers
86 views

backslash characters in inline style CSS in php script

I don't understand the function of the two backslashes on the following line... echo "<p style=\"font-family: $font; font-size: {$size}em;\">Hello, world!</p>"; of this code: ...
1
vote
4answers
106 views

backslash operator in MATLAB for a vector

In MATLAB let us type A = [0.1195952380, 0.2552619050, 0.3235000000,... 0.1289285710, 0.6675476190, -0.0770000000,... 0.1973809520]; and b0 = 1.7250238100; If I use backslash operator ...
0
votes
0answers
44 views

C “backslash encode/decode” special characters like quote, tab, escape, newline, etc [duplicate]

I would like to take a string like "Bob[TAB]John[TAB]Harry "The Hammer" Jones" and "backslash" encode the string as such: "Bob\tJohn\tHarry \"The Hammer\" Jones" So I can read/write single line ...
1
vote
2answers
62 views

Node.js for windows and macs forwardslash backslash rectification

Is there a method to rectify the discrepancy in node.js from windows to linux and mac concerning the backslash versus forwardslash? Windows requires backslashes when calling locations in git bash, ...
0
votes
0answers
47 views

Application.Executablepath in C# has mixed separator characters

I'm using someone else's code (licensed) on two different machines. On one machine, the Application.ExecutablePath returns the result the programmer must have expected, on the other it does not. Both ...
0
votes
0answers
31 views

JSONRPC parsing trouble in Ubuntu 12

I got problem upon sending JSON data to JSON RPC. I am using JSON RPC PHP library from Pozo (https://github.com/Pozo/json-rpc-php). First of all, I develop this on Windows Machine (using XAMPP with ...
4
votes
1answer
118 views

Avoiding long lines of code in Python

I try and keep my code within 80 characters wide so it is easy to see side by side in a standard window I set up. In doing this, I have a Python v2.7 construct like this: ...
2
votes
2answers
47 views

bash replace \ with / in a tetxfile

I have a file with some file’s path. Like this: C:\Users\peter\workspace\etwas.txt I tried read with this routine while read LINE do web=$LINE echo $web done <etwas.txt The result: ...
2
votes
2answers
141 views

how to escape a backslash in R

i'm working in R and I have troubles escaping the backslash. I am using the library stringr. install.packages("stringr", repos='http://cran.us.r-project.org') library("stringr") I would like to do ...
0
votes
2answers
106 views

Single Backslash inside ruby string

I have path strings (windows) with backslashes from a given export source with the format "path\to\something" When i try to read that in ruby, it reads \t and \s as escape sequences. In the ...
1
vote
2answers
66 views

Can't write hyperlink as a string

I want to write something like this string input = "<form action=\"http://blabla.com\" method=\"post\">...</form>"; but the backslash() where .com ends merge with link... what i can do? ...
0
votes
0answers
48 views

python popen without backslashed quote

I try to run a batch-file under windows environment with popen from python v2.7.3 and pass an argument as string. I need this string sorounded by quotes like this: "#p=weirdString1#s=weirdString2". ...
1
vote
2answers
85 views

Javascript respecting backslashes in input: negative lookbehind

In Javascript, I have a situation where I get input which I .split(/[ \n\t]/g) into an array. The point is that if a space is directly preceded by a backslash, I don't want the split to happen there. ...
0
votes
1answer
83 views

ANT does not load my environment variables correctly

I have a problem with an ant script so I added some echos to finde the source of the error. I guesed that it might be the environemt variable for my Android SDK so i added <echo level="info"> ...
1
vote
4answers
405 views

MySQL PHP Escape String '\' - Why is it not saved in the database with the backslash?

Confused about escape string and how it is stored in the database In my MySQL call, I escaping a string with a backslash: UPDATE `TABLE` SET `PERSONAL_BELONGINGS` = 'Tom\'s things' But when I look ...
0
votes
1answer
66 views

Removing 1 backslash from String (Ruby)

I've got html text by parsing other site. I've got this code: "<div class=\"asset-body\"><div class=\"user-icon\"><img src=\"http://l-userpic.livejournal.com/119811849/13265658\" ...
0
votes
3answers
84 views

Perl didn't match backslashes [duplicate]

Possible Duplicate: Text replacement with backslash in a variable in Perl Why this code didn't work? my $foo = '\aa\bb'; my $bar = '\aa\bb\ee\ss.txt'; say $bar =~ m/^$foo.*$/ ? 'OK' : ...
0
votes
1answer
150 views

Javascript: Replace backslashes with double backslashes

I'm currently having the problem mentioned in the title and I'm somehow not finding a way to properly replace backsashes with double backslashes, so that I can properly give the string to a webservice ...
4
votes
1answer
72 views

Backslashes in values/selectors

I have an HTML (multi)select list containing a list of network devices. <select id="Printers" multiple="multiple" name="Printers"> <option ...
0
votes
2answers
135 views

Not able to escape \ in Java using \\

I have a string. String invalid = "backslash escaping as <>:;%+\/"." I received an error message telling me to add \ to escape the sequence. When I try to write this in Java I know that ...
1
vote
2answers
158 views

Convering double backslash to single backslash in Python 3

I have a string like so: >>> t '\\u0048\\u0065\\u006c\\u006c\\u006f\\u0020\\u20ac\\u0020\\u00b0' That I made using a function that converts unicode to the representative Python escape ...
0
votes
1answer
97 views

java path to file on server must double backslah

I have a Java GUI. The user selects with the JFileChooser Dialog a file including the path to the file. The path is displayed in a text box, e.g. \\developDB\directory\subdirectory\file.info When I ...
6
votes
1answer
487 views

how to use sed replace string pattern with backslash

I want to do replace for the following patterns (the foregoing rule has higher priority) \right) -> remain unchanged \right ) -> remain unchanged \right] -> remain unchanged \right ] ...
0
votes
1answer
56 views

Reading input Backslash

binary = "\000\021\"\252\273\314". This is my input, and my function takes in this input and prints it out like so: def do_print(string): print string do_print(binary) But this function ...
1
vote
3answers
99 views

Reading backslash characters literally in c++

In my c++ code, I am trying to read \ and / characters literally, but \ is read as being same as /. My code is this: int x, y; char orient; cin >> N >> goalA >> goalB; for (int i = ...
1
vote
1answer
98 views

awk scripts and backslashes

I am a new to Unix. ${AWK} '\!/^ / && \!/^-/ && \!/^</ && \!/^$/ {printf "%s,,N,N,N,,,,\n", $1}' ~/ozserver.txt When I run the command like before, there's errorInfo printed ...
0
votes
2answers
279 views

Dos echo, writing a text string that contains a backslash, isues with assignment of the variable

I am a total novice at DOS and am having an issue with a .bat file I am trying to run. I want the bat file to take the text here within the parentheses (\Music\TheArchive\Aeph & Neonlight\Aeph ...
3
votes
1answer
113 views

What is the use of backslash in an URL?

I have a front controller in my PHP project. Here is the code; .htaccess file <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d ...
2
votes
1answer
99 views

Path with backslashes to path with forward slashes javascript

I'm trying to make a local xml file parsing "application" for some colleagues and i'm using the current function to retrieve the files: function ShowFolderFileList(folderspec) { var fso, f, f1, ...
0
votes
5answers
386 views

find if string has slash in front

I want to find if a string has "/" in front of it, in my code I get indexof of the string and find out if the character before it has anything, which works but how do I find if it actually is forward ...
0
votes
1answer
66 views

What's the issue with the “\” character in JavaScript?

What's the problem with "\" character in JavaScript? This script doesn't work: var theText='<he:/ll/*o?|>' function clean(txt) { var chr = [ '\', '/', ':', '*', '?', '<', '>', '|' ]; ...
0
votes
2answers
62 views

Why I need to double-escape (use 4 \) to find a backslash ( \ ) in pure SQL?

I do not understand this MySQL behaviour : if I want to display a\b, I can just select "a\\b" which work without problem : mysql> select "a\\b"; +-----+ | a\b | +-----+ | a\b | +-----+ 1 row in ...
-1
votes
3answers
199 views

Perl find and replace backlashes in text file

I have a file that I am entering into a MySQL table. The file, sadly, contains double quotes (") and backslashes (). I have figured out a way, in Perl, to find and replace the double quotes (or so I ...
3
votes
2answers
108 views

Python fabric.api backslash hell

I'm new to python and fabric api. I'm trying to use the sudo functionality to run a sed command in bash terminal which insert some text after a particular line of text is found. Some of the text I'm ...
0
votes
0answers
194 views

Unwanted back slashes before quotation marks while working with PDO and MySQL in PHP

I have a CMS that its administrator must use it to insert some website gadgets written in JavaScript to its database MySQL. I've used PDO for this, but it puts back slashes before all quotation marks ...

1 2 3 4 5