sayed71 / regular_expression

Regular Expression Example (PHP, ASP.Net, .Net Core, JavaScript, jQuery etc.)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Regular Expression

image

PHP Example:

$product_name = ""; //Input String <br>
$product_name = preg_replace("/[\s_()]/", "-", $product_name); <br>
$product_name = preg_replace("/[^A-Za-z0-9(\-)]/", '', $product_name); <br>
$product_name = str_replace( array( '\'', '"', ',' , ';', '<', '>', '.', '%' ), ' ', $product_name); <br>
echo $product_name;

Reference:

About

Regular Expression Example (PHP, ASP.Net, .Net Core, JavaScript, jQuery etc.)