Answers for "php strip character from string"

PHP
0

replace all numbers in string php

$words = preg_replace('/[0-9]+/', '', $words);
Posted by: Guest on October-21-2020
0

trim specific character from strin using php

$widget_id = trim($widget_text,'[]')
Posted by: Guest on January-25-2021

Code answers related to "php strip character from string"

Browse Popular Code Answers by Language