GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Mail::Address::MobileJp(3) User Contributed Perl Documentation Mail::Address::MobileJp(3)

Mail::Address::MobileJp - mobile email address in Japan

  use Mail::Address::MobileJp;

  my $email = '123456789@docomo.ne.jp';
  if (is_mobile_jp($email)) {
      print "$email is mobile email in Japan";
  }

  # extract mobile email address from an array of addresses
  my @mobile = grep { is_mobile_jp($_) } @addr;

Mail::Address::MobileJp is an utility to detect an email address is mobile (cellphone) email address or not.

This module should be updated heavily :)

This module exports following function(s).
is_mobile_jp
  $bool = is_mobile_jp($email);
    

returns whether $email is a mobile email address or not. $email can be an email string or Mail::Address object.

is_imode
  $bool = is_imode($email);
    

returns whether $email is a i-mode email address or not. $email can be an email string or Mail::Address object.

is_vodafone
  $bool = is_vodafone($email);
    

returns whether $email is a vodafone(j-sky) email address or not. $email can be an email string or Mail::Address object.

is_ezweb
  $bool = is_ezweb($email);
    

returns whether $email is a ezweb email address or not. $email can be an email string or Mail::Address object.

is_softbank
  $bool = is_softbank($email);
    

returns whether $email is a softbank email address or not. $email can be an email string or Mail::Address object.

Tatsuhiko Miyagawa <miyagawa@bulknews.net>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

Mail::Address, http://www.mag2.com/faq/mobile.htm
2009-01-09 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.