RosettaCodeData/Task/Regular-expressions/PHP/regular-expressions.php

10 lines
259 B
PHP
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
$string = 'I am a string';
# Test
if (preg_match('/string$/', $string))
{
echo "Ends with 'string'\n";
}
# Replace
$string = preg_replace('/\ba\b/', 'another', $string);
echo "Found 'a' and replace it with 'another', resulting in this string: $string\n";