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
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 |
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 |
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 |
Answer / sathya
Use this coding
$variablename="http://info@abc.com";
$u=explode("@",$variablename);
$u2=$u[1];
| Is This Answer Correct ? | 7 Yes | 4 No |
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 |
Answer / navneet singh
$url = "http://info@abc.com"
$domain = strstr($url,"@");
echo $domain
| Is This Answer Correct ? | 5 Yes | 7 No |
how can attached a file to a mail and attached a resume to a mail and received in id
how to get the value in script values
Can we extend final class in php?
How to stop the execution of php script?
Do you know what's the difference between __sleep and __wakeup?
How to remove leading and trailing spaces from user input values?
What is dao in php?
What is empty php?
What are global variables in php?
How to find a length of a string in php?
What is the use of htmlentities in php?
How do I find out the number of parameters passed into function?