NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Blackwell goes tech (Score:1)
Re:Blackwell goes tech (Score:1)
Re:Blackwell goes tech (Score:1)
An interesting note. =)
I think there was one important gripe that you missed: the lack of focus on multilingual processing and internationalization. This is something that is very important to many linguists (I daresay a majority), but which may not be evident even to a technical editor who has no experience in dealing with non-English alphabets.
Consider this code (replace5.pl), mentioned in the review and available here [arizona.edu]
open F, $ARGV[0] or die "Oops!\n";
while ($line = <F>) {
$line =~ tr/\341\351\355\363\372/aeiou/;
print $line;
}
close F;
(I won't even start on unnecessary use of filehandles...)
If this is the extent of his foray into international support, then the book might be more accurately retitled Programming for Linguists: Perl for English Language Researchers
sample chapter one [blackwellpublishing.com]
Reply to This
Parent