Tagged Questions
The slashes tag has no wiki summary.
3
votes
1answer
71 views
How to replace dashes with slashes in .htacess
I want to replace all the dashes from my PHP filenames but I don't know how to do it.
Basically I have something like this:
http://localhost/category-activity.php
And I want to end up with this:
...
2
votes
2answers
121 views
MVC 3 - Slashes and spaces in route
I have the following route defined in my Global.asax (MVC 3 web project):
routes.MapRoute(
"BlogCategory", // Route name
"Blog/Category/{*category}", // URL with ...
2
votes
1answer
436 views
file: URIs and Slashes
An application I'm working on involves accessing files on network file shares, and we're using URIs to specify the files' locations.
My understanding of the file: URI is that they should take the ...
2
votes
1answer
2k views
Ant basedir slashes escape problem
I'm using Ant with FDT 3 and I have Ant creating a jsfl to compile fla's. When I use the built in '${basedir}' property in Ant it gives me the path with backslashes(\) in it because I'm on Windows. ...
1
vote
2answers
64 views
Read file path from utf-8 text file?
I have a UTF-8 text file "example.txt" that contains:
c:/temp/file.txt
I read the file content using this method:
public static String fileToString(final File file, final String charset) throws ...
1
vote
3answers
70 views
Slashes not working properly in my web service
I have a simple line of code in a web service:
instance = @"\instanceNameHere";
Yet the output is always the same.
\\instanceNameHere
If I remove the @ and use two slashes, I get the same ...
1
vote
5answers
216 views
Slashes and hashes in Perl and metacharacters
Thanks for the previous assistance everyone!. I have a query regarding RegExp in Perl
My issue is..
I know, when matching you can write m// or // or ## (must include m or s if you use this). What ...
1
vote
1answer
223 views
php curl adding slashes to xml attributes
trying to post some xml with curl but it keeps adding slashes to "s.
I'm sending it to a server i don't hav access so cant encode/decode...
$xmlToPost = '<PurchaseItems DISCOUNT="0" ...
1
vote
1answer
631 views
CKEditor: returning text with wrong html tags
when I retrieve the data from the textarea in the form,
<?php $editor_data = $_POST['editor1']; ?>
this works fine locally, but the remote server returns the text mixing up the style with ...
0
votes
3answers
58 views
How to add slashes for quotes in a string using PHP? [closed]
Possible Duplicate:
quick function to replace ' with \' in php
Is there a PHP function that only adds slashes to double quotes NOT single quotes
I have for example:
$one = 'put ...
0
votes
1answer
46 views
php slashes expression
I have a html like this
<div><font
color="green">ABC</font>A'ssd"fsdf</div>
i need to change the above as
<div><font
...
0
votes
3answers
267 views
trim slashes from Request_Uri
here's my code snippet to start with:
$url = $_SERVER["REQUEST_URI"]; // gives /test/test/ from http://example.org/test/test/
echo"$url";
trim ( $url ,'/' );
echo"$url";
I use this in combination ...
0
votes
1answer
165 views
escaped filename slashes
I want to generate filename from a user-inputed string and to make sure that it is safely escaped.
for example, if the user enters /usr/bash the output will be \/usr\/bash
and if the input is The ...
0
votes
3answers
665 views
MySQL slashes and nl2br
I am trying to store HTML posted from a textarea into a database. I have a textarea inside a form which I have called "message". The PHP code that processes it is:
if(isset($_POST['submit'])){
...
0
votes
2answers
501 views
How to “pathconvert” under Maven?
I am having a similar problem as http://stackoverflow.com/questions/1799684/ant-basedir-slashes-escape-problem except that I'm running under Maven.
I'd like to generate cross-platform paths relative ...
0
votes
1answer
81 views
Trailing slashes in rewritten urls
I'm probably being completely thick here but I can't seem to make an optional trailing slash work in my url rewriting
I've seen Gumbos comment about excluding the file you are rewriting to exclude ...