“php hapus ruang sebelum dan sesudah string” Kode Jawaban

Hapus ruang dari string php

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

php hapus ruang sebelum dan sesudah string

$words = '      my words     ';
$words = trim($words);
var_dump($words);
// string(8) "my words"
Vivacious Vulture

Hapus ruang dari awal dan akhir string dalam php

 
$trimmed = trim($text);
var_dump($trimmed);

 
Hichem from Tunisia

php menghilangkan ruang dari string

<?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

trim php

<?php

$text   = "\t\tThese are a few words :) ...  ";
$binary = "\x09Example string\x0A";
$hello  = "Hello World";
var_dump($text, $binary, $hello);

print "\n";

$trimmed = trim($text);
var_dump($trimmed);

$trimmed = trim($text, " \t.");
var_dump($trimmed);

$trimmed = trim($hello, "Hdle");
var_dump($trimmed);

$trimmed = trim($hello, 'HdWr');
var_dump($trimmed);

// trim the ASCII control characters at the beginning and end of $binary
// (from 0 to 31 inclusive)
$clean = trim($binary, "\x00..\x1F");
var_dump($clean);

?>
The Red-est of Firebreaks

Jawaban yang mirip dengan “php hapus ruang sebelum dan sesudah string”

Pertanyaan yang mirip dengan “php hapus ruang sebelum dan sesudah string”

Lebih banyak jawaban terkait untuk “php hapus ruang sebelum dan sesudah string” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya