Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

tel me any 2 regular expressions with example

Answer Posted / shyambabu

int ereg ( string $pattern , string $string [, array
&$regs ] )
Date Format:YYYY-MM-DD
if (ereg ("([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})", $date,
$regs)) {
echo "$regs[3].$regs[2].$regs[1]";
prints in dd.mm.yyyy format
} else {
echo "Invalid date format: $date";
}


string ereg_replace ( string $pattern , string
$replacement , string $string )

$num = '4';
$string = "This string has four words.";
$string = ereg_replace('four', $num, $string);
echo $string; /* Output: 'This string has 4 words.'

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to reset/destroy a cookie?

1140


What are the difference between echo and print?

990


Explain me what is x+ mode in fopen() used for?

1016


How to calculate the length of a string?

1116


How can we define a variable accessible in functions of a php script?

999


How to count a number of words in a string in php?

967


Is it more secure to use cookies to transfer session ids?

965


Is array function in php?

1019


Tell me how is it possible to remove escape characters from a string?

953


Explain php split() function.

986


What is regular expression in javascript?

918


Which software is best for php?

1004


in PHP for pdf which library used?

1015


How to access a global variable inside a function?

1009


What is the difference between the include() and require() functions?

1493