How can we extract string 'abc.com' from a string
"http://info@abc.com" using regular expression of PHP

Answers were Sorted based on User's Feedback



How can we extract string 'abc.com' from a string "http://info@abc.com" using r..

Answer / rachana

We can use the preg_match() function with "/.*@(.*)$/" as
the regular expression pattern. For example:
preg_match("/.*@(.*)$/","http://info@abc.com",$data);
echo $data[1];

Is This Answer Correct ?    49 Yes 2 No

How can we extract string 'abc.com' from a string "http://info@abc.com" using r..

Answer / sameer joshi

You can do like $site_array=explod("@","http://info@abc.com");
$site_addr=$sitr_array[1];

$site_addr will get the value as abc.com

Is This Answer Correct ?    13 Yes 7 No

How can we extract string 'abc.com' from a string "http://info@abc.com" using r..

Answer / gaurav

you can use array split
$site_arr=split("@", "http://info@abc.com");
$site_name=$site_arr[1];

$site_name will have the value abc.com.

Is This Answer Correct ?    10 Yes 5 No

How can we extract string 'abc.com' from a string "http://info@abc.com" using r..

Answer / sathya

Use this coding

$variablename="http://info@abc.com";
$u=explode("@",$variablename);
$u2=$u[1];

Is This Answer Correct ?    7 Yes 4 No

How can we extract string 'abc.com' from a string "http://info@abc.com" using r..

Answer / nitesh kumar

you can use explode funciton

echo $site_array=end(explode("@","http://info@abc.com"));

Is This Answer Correct ?    4 Yes 2 No

How can we extract string 'abc.com' from a string "http://info@abc.com" using r..

Answer / navneet singh

$url = "http://info@abc.com"
$domain = strstr($url,"@");
echo $domain

Is This Answer Correct ?    5 Yes 7 No

Post New Answer

More PHP Interview Questions

What are new features in php 7?

0 Answers  


How to implement a class named dragonball. This class must have an attribute named ballcount (which starts from 0) and a method ifoundaball. When ifoundaball is called, ballcount is increased by one. If the value of ballcount is equal to seven, then the message you can ask your wish is printed, and ballcount is reset to 0. How would you implement this class?

0 Answers  


Where are cookies stored php?

0 Answers  


Write a query to to delete duplicate rows?

4 Answers   ATS,


What is htmlspecialchars?

0 Answers  






Can anyone explain about join?

3 Answers  


when you will get the message/error "headers already sent"?

5 Answers  


What is php full form?

0 Answers  


List few sensible functions in PHP?

0 Answers  


How do I end a php session?

0 Answers  


How to get the directory name out of a file path name?

0 Answers  


How to check a key exist in an array?

0 Answers  


Categories