Answers for "php string $replace"

PHP
0

how to remove words in contain integer php

$input = "H3llo This is a? #test e3ample of a sentence-word bl&h.";
echo preg_replace('/(?=[^ ]*[^A-Za-z '-])([^ ]*)(?:\s+|$)/', '', $input);

This is of a sentence-word
Posted by: Guest on December-15-2020

Browse Popular Code Answers by Language