Answers for "remove starting and ending comma from string php"

PHP
0

remove string after comma in php

preg_replace('/^([^,]*).*$/', '$1', $print);
substr($string, 0, strrpos($string.",", ","));
Posted by: Guest on March-18-2021

Code answers related to "remove starting and ending comma from string php"

Browse Popular Code Answers by Language