Answers for "php preg_replace function"

PHP
2

preg_replace

<?php
$string = 'April 15, 2003';
$pattern = '/(\w+) (\d+), (\d+)/i';
$replacement = '${1}1,$3';
echo preg_replace($pattern, $replacement, $string);
Posted by: Guest on August-02-2020
0

preg_replace examples

$result = preg_replace(
    array('/pattern1/', '/pattern2/'),
    array('replace1', 'replace2'),
    $string
);
Posted by: Guest on March-09-2021
0

php preg_replace function

preg_replace($pattern, $replacement, $string);
Posted by: Guest on May-01-2020

Browse Popular Code Answers by Language