How can we extract string 'abc.com' from a string
"http://info@abc.com" using regular expression of PHP
Answer Posted / sathya
Use this coding
$variablename="http://info@abc.com";
$u=explode("@",$variablename);
$u2=$u[1];
| Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
List data types in PHP?
How can I learn php fast?
What is regular expression in javascript?
am from coimbatore.am learning php&mysql. what will be the approx salary for me if i get a job in coimbatore.
Can we override static method?
Does facebook use php framework?
What is phpsessid?
What is the use of mysql_fetch_assoc in php?
Is php a strongly typed language?
Applications written to provide a GUI shell for Unix and Linux are called
What is the difference between mysql_fetch_array() and mysql_fetch_assoc()?
How do I run a php file?
How do you trim spaces in excel?
Why php is sometimes called as embedded scripting language?
What is the difference between abstract class and interface in php?