NAME Data::Validate::Terrorist - Validate a name against terrorist lists SYNOPSIS # as exported function use Data::Validate::Terrorist qw/is_terrorist/; print 'BAD' if is_terrorist($first_name, $last_name); # as OO use Data::Validate::Terrorist; my $validator = Data::Validate::Terrorist->new; print 'BAD' if $validator->is_terrorist("$last_name $first_name"); DESCRIPTION Data::Validate::Terrorist is a simple validitor to validate a name against terrorist lists. The list is from , , run update_terrorist_csv to update the bundled csv. METHODS is_terrorist is_terrorist($last_name, $first_name); is_terrorist($first_name, $last_name); is_terrorist("$last_name $first_name"); when one string is passed, please be sure last_name is before first_name. or you can pass first_name, last_name (last_name, first_name), we'll check both "$last_name $first_name" and "$first_name $last_name". return 1 for yes, 0 for no. it will remove all non-alpha chars and compare with the list we have. AUTHOR Binary.com COPYRIGHT Copyright 2014- Binary.com LICENSE This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO Data::OFAC