Answers for "php remove whitespace and special characters from string"

PHP
0

remove symbolsand spaces php

preg_replace('/[^A-Za-z0-9]/', "", $data)
Posted by: Guest on December-14-2020
1

php remove all whitespace from a string

//remove all white spaces from a string
$whatonearth=preg_replace('/\s/','',"what o n   ear th");
Posted by: Guest on November-04-2019
0

PHP rtrim — Strip whitespace (or other characters) from the end of a string

<?php

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

print "\n";

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

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

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

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

?>
Posted by: Guest on May-14-2022

Code answers related to "php remove whitespace and special characters from string"

Browse Popular Code Answers by Language