I have a string like this one text more text "empty space". How can I replace the space in "empty space" and only this space with ###?

link|improve this question

1  
Please don't sign your posts. – Lightness Races in Orbit Jan 3 at 22:07
1  
What have you tried? What research have you done? – Lightness Races in Orbit Jan 3 at 22:08
I only want to replace the empty spaces form the text between "". So the reult shoould look like text more text "empty###space" – user1067506 Jan 3 at 22:13
1  
This question is overall confusing. Instead of "text more text".. provide a real Exaple. "This is a text string and I'd like it to be changed somehow." This display the string exactly how you want it changed. – Matt Moore Jan 3 at 22:32
@user1067506: Please answer my questions. – Lightness Races in Orbit Jan 4 at 0:52
feedback

5 Answers

up vote 1 down vote accepted

How about this, with no regular expressions:

$text = 'foo bar "baz quux"';
$parts = explode('"', $text);
$inQuote = false;

foreach ($parts as &$part) {
    if ($inQuote) { $part = str_replace(' ', '###', $part); }
    $inQuote = !$inQuote;
}

$parsed = implode('"', $parts);
echo $parsed;
link|improve this answer
Seems to work. Thank you! – user1067506 Jan 3 at 22:40
feedback
$string = 'text more text "empty space"';
$search = 'empty space';
str_replace($search, 'empty###space', $string);
link|improve this answer
+1 for not using regular expressions when not necessary – Cassy Jan 3 at 22:15
@George The text will change..."empty space" was only for demonstrating – user1067506 Jan 3 at 22:17
@user1067506 I see from your comment, this wasn't clear in original post. Working on another solution. – George Reith Jan 3 at 22:18
@George Yep. Maybe I did not describe the problem exactly. Sorry for that. – user1067506 Jan 3 at 22:25
feedback
$somevar = "empty space";
$pattern = "/\s/";
$replacement = "###";
$somevar2 = preg_replace($pattern, $replacement, $somevar);
echo $somevar2;
link|improve this answer
this will do all spaces. if this is in a big blob of text, pattern would be empty\sspace and replacement would be empty###space – Mike_K Jan 3 at 22:11
Please have a look at my comment above. – user1067506 Jan 3 at 22:14
feedback
$string = "My String is great";
$replace = " ";
$replace_with = "###";

$new_string = str_replace($replace, $replace_with, $string);

This should do it for you. http://www.php.net/manual/en/function.str-replace.php

link|improve this answer
After seeing the updated question, George has provided the correct answer. – Matt Moore Jan 3 at 22:11
Please have a look at my comment above. – user1067506 Jan 3 at 22:14
feedback

Edited after you comments

Maybe it's not the best solution, but you can do it like this:

$string = 'text more text "empty space"';
preg_match('/(.*)(".*?")$/', $string, $matches);
$finaltext = $matches[1] . str_replace(' ', '###', $matches[2]);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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