I'm making a SWF uploader and have my HTML form done.

It works totally fine until I upload a SWF file with spaces in the name.

How can I replace whitespace with underscores?

I have tried...

str_replace(" ","_", $file);

...and...

preg_replace(" ","_", $file);
link|improve this question
2  
You don't need to put [PHP] in the title of your question. – jnpcl May 17 '11 at 23:10
feedback

3 Answers

How can I replace whitespace with underscores?

\s character class will match whitespace characters. I've added the + quantifier to condense multiple whitespace to one _. If you don't want that, remove the +.

$file = preg_replace/('/\s+/', '_', $file);
link|improve this answer
feedback

the function is correct but you have to assign it to a variable.

$filename = str_replace/preg_replace(" ","_", $file);
link|improve this answer
preg_replace() won't work as is like that. – alex May 17 '11 at 23:18
i know. but i copied just what you posted. i thought you would know how to handle it :) – aleksv May 17 '11 at 23:19
I would, but not sure about the OP :D – alex May 17 '11 at 23:19
oh sorry i thought you made the post. you just edited it :D – aleksv May 17 '11 at 23:21
feedback

I usually approach it from the other side and only allow characters from a white-list; I replace everything except these characters:

$file = preg_replace("/[^-_a-z0-9]+/i", "_", $file);
link|improve this answer
1  
You could reduce that to /[^-\w]+/. CodePad. – alex May 17 '11 at 23:23
@alex true, but I think this illustrates better what I mean. – jeroen May 17 '11 at 23:25
You are right, if the OP has limited regex experience, then seeing the chars explicitly will probably assist them in grokking it. – alex May 17 '11 at 23:26
@alex and because I'm to lazy to write an explanation like you did :) – jeroen May 17 '11 at 23:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.