Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Replacing a backslash with a forward slash in Javascript

478 views
Skip to first unread message

Kberg

unread,
Dec 26, 2006, 10:42:59 AM12/26/06
to
In case anyone is interested, this is how I solved the problem of
replacing a back slash with a forward slash (as in being able to access
a document on a file share on an intranet via a browser)

if you cut and paste a path from windows explorer
\\myshare\mydir\mydoc.txt into a form textbox, you can use the
following code to transform it into something usable by a browser:

mytxt = document.myForm.myTextBox.value;
mytxt = mytxt.replace(/\134/g,"/");

\134 is the octal representation of a backslash as a regular
expression. the g is required to replace all instances of the
backslash.

Martin Honnen

unread,
Dec 26, 2006, 10:46:40 AM12/26/06
to
Kberg wrote:

> mytxt = document.myForm.myTextBox.value;
> mytxt = mytxt.replace(/\134/g,"/");
>
> \134 is the octal representation of a backslash as a regular
> expression. the g is required to replace all instances of the
> backslash.

Why not simply
mytxt = mytxt.replace(/\\/g,"/");
? I am not sure octal escape sequences in regular expression patterns
are standardized and support anywhere.

--

Martin Honnen
http://JavaScript.FAQTs.com/

0 new messages