Answers for "how to replace all the space in text in php"

PHP
1

php string replace space

$journalName = preg_replace('/s+/', '_', $journalName);
Posted by: Guest on February-05-2021

Code answers related to "how to replace all the space in text in php"

Browse Popular Code Answers by Language