Page 313 - Computer Software Application TP - Volume 1
P. 313
COMPUTER SOFTWARE APPLICATION - CITS
echo “Pattern found in the string.”;
}
else
{
echo “Pattern not found in the string.”;
}
?>
</body>
</html>
3 Save the program in C:\Apache24\htdocs in a folder with .php extension
4 Run the Apache services from windows services
5 Open the browser and type the following address
http://localhost/foldername/
6 Click the php file to run and verify the output
VI Matching repeating characters using {}
1 Open the text editor
2 Write the following codes
<html >
<head>
<title> Matching repeating characters using {} </title>
</head>
<body>
<?php
$string = “12345”;
$pattern = “/\d{3,5}/”; // Matches 3 to 5 digits
if (preg_match($pattern, $string))
{
echo “The string contains 3 to 5 digits.”;
}
?>
</body>
</html>
298
CITS : IT & ITES - Computer Software Application - Exercise 58 CITS : IT & ITES - Computer Software Application - Exercise 58