“Usuń Whitespace z String PHP” Kod odpowiedzi

Usuń przestrzeń z String PHP

<?php
$stripped = str_replace(' ', '', "10 1000 0000 000");
echo $stripped;
Unusual Unicorn

Usuń każdy PHP Whitespace PHP

$string = preg_replace('/\s+/', '', $string);
LunkLoafGrumble

Usuń spacje z String PHP

<?php
$phone = preg_replace( '/\s+/', '', "01234 567890" );
echo $phone;
Xenophobic Xenomorph

Usuń Whitespace z String PHP

$str = "\n\n\nHello World!\n\n\n";
echo "With trim: " . trim($str);
Adventurous Alligator

php usuń całą błotniczkę z ciągu

//remove all white spaces from a string
$whatonearth=preg_replace('/\s/','',"what o n   ear th");
Grepper

PHP usuń przestrzeń z ciągu

<?php
$name = "Yeasin_ahammed_apon"
#str_replace('what u want to replace', 'with what ', $name);
str_replace('_', ' ', $name);
echo $name;
# output: Yeasin ahammed apon
?>
#str_replace('what u want to replace', 'with what ', $name);
polyglot orca

Odpowiedzi podobne do “Usuń Whitespace z String PHP”

Pytania podobne do “Usuń Whitespace z String PHP”

Więcej pokrewnych odpowiedzi na “Usuń Whitespace z String PHP” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu