Answers for "remove colon and white space in a string by php"

PHP
0

remove colon and white space in a string by php

$demo_string =  "The Godfather: Part II";

$demo_string = str_replace(':', '', $demo_string);

$demo_string = str_replace(' ', '', $demo_string);
Posted by: Guest on April-16-2022

Code answers related to "remove colon and white space in a string by php"

Browse Popular Code Answers by Language