Printing Japanese characters

2002-11-26 Thread vinai AR
Title: Message Hi all,  I am using Perl 5.6.1 and Windows 2000 US English OS. I am developing some perl scripts that have to process Japanese characters and print out Japanese characters. We use to save the files in Unicode when it has some Japanese characters. But when we compile it or exe

RE: Reading config files

2002-11-01 Thread vinai AR
Hi, the one way to use the config file is 1. Don't use my to declare variables inside the config file. 2. In the perl program just require the config file and the variables and its values will be a available in the perl program. 3. use "require ;" statement to use the subro

Configuration files

2002-10-24 Thread vinai AR
Title: Message Hi all,     We have a library and a configuration file for that library. the inputs to the library will be populated in the configuration file and the configuration file name will be sent to the library. Now we need to call the library twice with different sets of configurati

RE: Getting A File Name

2002-10-16 Thread vinai AR
I think this script will help u. Assume that u r in the directory where u have these three files.(If not use chdir and move to that directory). @file_List = On executing the above statement @file_List will have all the three files fred.*. map {$_ =~ s/fred.//} @file_List The above statement r