I don't really know how to title this message, so hope that worked ;)
I'm working on a program that parses and modifies a CSV file. The source file is an export of another companies address book. I make the necessary alterations to make it importable into our Active Directory as mail enabled...
Here's what I'm trying to do:
my @skipcn = ('KAbel', 'PAbell', 'tabney', 'TYost');
foreach my $compcn (@skipcn)
{
if ($compcn eq $cn)
{
print $compcn;
}
}
This works, but is case sensitive. I'd like to make it non-case sensitive. I found the use of...
Greetings and thanks in advance for any responses.
I'm new to Perl in particular and scripting in programming in general, and so far find it fascinating even if a bit frustrating at times.
I'm trying to write a PL file that will take one CSV file, parse it in (which I have done using...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.