Answers for "TAKE OUT file exntension from file name php"

PHP
1

php regex remove file extension

$withoutExt = preg_replace('/\\.[^.\\s]{3,4}$/', '', $filename);

This matches a dot followed by three or four characters which are not a dot or a space.
Posted by: Guest on June-19-2020

Code answers related to "TAKE OUT file exntension from file name php"

Browse Popular Code Answers by Language