Here is my code for to validate email address and this is perfect for my requirement. but i want to translate this format into Japanese language.Or Tell me such regular expression which used for multiple languages
if ( ! function_exists('valid_email')){
function valid_email($address)
{
return ( ! preg_match("/^([a-z0-9\+_\-]+)(\.[a-z0-9\+_\-]+)*@([a-z0-9\-]+\.)+[a-z]{2,6}$/ix", $address)) ? FALSE : TRUE;
}}
Thanks in Advance.