What is the syntax for using regular expressions in PHP for string manipulation?

Regular expressions in PHP are a powerful tool for string manipulation. To use regular expressions in PHP, you can use functions like preg_match(), preg_replace(), and preg_split(). These functions allow you to search, replace, and split strings based on specific patterns defined by regular expressions. Example:

// Using preg_match to search for a pattern in a string
$string = "Hello, World!";
$pattern = '/\bHello\b/';
if (preg_match($pattern, $string)) {
    echo "Pattern found in the string.";
} else {
    echo "Pattern not found in the string.";
}

// Using preg_replace to replace a pattern in a string
$newString = preg_replace('/\bHello\b/', 'Hi', $string);
echo $newString;

// Using preg_split to split a string based on a pattern
$words = preg_split('/\s+/', $string);
print_r($words);