| Name | Expertise | Status |
 |
Justin Wheeler Canada View Profile
| Any question relating to Perl including its internals, data structures, speed, memory usage, syntax, version changes, extra CPAN modules, code standards, code cleanup, or just silly problems. | Available Ask A Question View Past Answers |
Marty Landman View Profile
| Perl programming using CGI, databases, HTML templating, and website automation. | Available Ask A Question View Past Answers |
Jason Silver Canada View Profile
| I can answer questions about script installation problems. I can give hints and tips for writing code. I can suggest the best approaches for writing web applications, and other similar topics. | Available Ask A Question View Past Answers |
| |
| VOLUNTEER TO BE AN EXPERT IN THIS CATEGORY |
| Recent Answers |
 |
 |
2008-11-13 looking for a way to write a regex line: Hi Ernie, That is most certainly not what you want, because [] means a character class, which would cause the regex to replace all instances of < followed by anything that's not an &, g, t, or semicolon...
|
2008-11-04 performing an action on multiple files: Hi Andrew, You can just use the glob operator to get what you want: Something like: FILE: foreach my $file (<directory/*.csv>) { open my $fh, '<', $file; <$fh>; # Dump header....
|
2008-10-30 Write back to file: Hi Judy, This is a tricky subject in general. You'd be overwriting in normal cases. An example I just whipped up (which may or may not be even correct). Cut and paste the code to get its formatting...
|
2008-10-02 Web server: This is a very long and complicated question to answer. It is best if you do some research with Google, and then ask me specific questions. Here's a good place to start: http://www.google.com/search?q=how+to+set+up+a+webserver+with+perl&sourceid=navc...
|
2008-09-28 LWP:Simple: From here: http://www.perl.com/pub/a/2002/08/20/perlandlwp.html?page=5 When you access an HTTPS URL, it'll work for you just like an HTTP URL would--if your LWP installation has HTTPS support (via...
|
| More Answers for "Perl & CGI" |