Jump to content

[SOLVED] White spaces


redfox180

Recommended Posts

Hello,

 

I am trying to standardize all different white spaces inside a text to a defined value, for example 1.

 

How can I clean up this text:

 

Josie      has          4  different coats.<                 

One is blue<

...

TO THIS:

 

Josie/has/4/different/coats/One/is/blue

 

Ive tried str_replace but doesn't work since the spaces are not defined.

Does anyone know how to do it?

 

Thanks

James

Link to comment
Share on other sites

Here's my (probably slightly rubbish) solution.

 

<?php

$inputStr = "Josie      has           4   different coats.<                 
One is blue<";

$explodeInput = explode(" ", $inputStr);

$newStr="";

for($i=0; $i<count($explodeInput); $i++) {

$arrayInput = $explodeInput[$i];

if($arrayInput != null || $arrayInput != "") {
	$newStr .= trim($arrayInput);
	$newStr .= "/";
}

}

$newStr = substr($newStr, 0, strlen($newStr)-1);
$newStr = str_replace("<", "", $newStr);
$newStr = str_replace(".", "", $newStr);

echo $newStr;

?>

 

I just pasted in your input string and it outputs what you want ^.^ modify as you wish.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.