module directory problem

2002-01-18 Thread Yeung Siu

Hi all,

I have problem with directory environment. The scripts
are on a NT system using Active Perl v5.6.1. I have
one script at 

foo\test.pl

and use package at

tools\tools.pm


I imported the tools.pm to test.pl during this

# in test.pl script
use lib '../tools';
use TOOLS;


The tools.pm has the following:

# in tools.pm
package TOOLS;
use Cwd;

$dir = cwd();  ### get the path of the current
directory
print $dir\n;

1;

The problem is that the value of $dir is foo\ and
not tools\ even tools.pm in the tools\. This is
a problem since I need to access files with data in
tools\ from the tools.pm script. Are there anyway to
solve the module import problem? Thanks =D

__
Do You Yahoo!?
Send FREE video emails in Yahoo! Mail!
http://promo.yahoo.com/videomail/

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: Modules needed for Validation

2002-01-18 Thread Yeung Siu

You can use regular expressions to verify them.

--- Connie Chan [EMAIL PROTECTED] wrote:
 Hi all, 
 
 Is there any module can use to verify data type (String, Integer, floating, Hex, 
valid email
 address, valid url etc.) ?
 Thank you very much.
  
 


=
Yeung Siu
[EMAIL PROTECTED]

__
Do You Yahoo!?
Send FREE video emails in Yahoo! Mail!
http://promo.yahoo.com/videomail/

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]