Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

regexp::common::profanity(3pm) [debian man page]

Regexp::Common::profanity(3pm)				User Contributed Perl Documentation			    Regexp::Common::profanity(3pm)

NAME
Regexp::Common::profanity -- provide regexes for profanity SYNOPSIS
use Regexp::Common qw /profanity/; while (<>) { /$RE{profanity}/ and print "Contains profanity "; } DESCRIPTION
Please consult the manual of Regexp::Common for a general description of the works of this interface. Do not use this module directly, but load it via Regexp::Common. $RE{profanity} Returns a pattern matching words -- such as Carlin's "big seven" -- that are most likely to give offense. Note that correct anatomical terms are deliberately not included in the list. Under "-keep" (see Regexp::Common): $1 captures the entire word $RE{profanity}{contextual} Returns a pattern matching words that are likely to give offense when used in specific contexts, but which also have genuinely non- offensive meanings. Under "-keep" (see Regexp::Common): $1 captures the entire word SEE ALSO
Regexp::Common for a general description of how to use this interface. AUTHOR
Damian Conway (damian@conway.org) MAINTAINANCE
This package is maintained by Abigail (regexp-common@abigail.be). BUGS AND IRRITATIONS
Bound to be plenty. For a start, there are many common regexes missing. Send them in to regexp-common@abigail.be. LICENSE and COPYRIGHT This software is Copyright (c) 2001 - 2009, Damian Conway and Abigail. This module is free software, and maybe used under any of the following licenses: 1) The Perl Artistic License. See the file COPYRIGHT.AL. 2) The Perl Artistic License 2.0. See the file COPYRIGHT.AL2. 3) The BSD Licence. See the file COPYRIGHT.BSD. 4) The MIT Licence. See the file COPYRIGHT.MIT. perl v5.14.2 2010-02-23 Regexp::Common::profanity(3pm)

Check Out this Related Man Page

Regexp::Common::lingua(3)				User Contributed Perl Documentation				 Regexp::Common::lingua(3)

NAME
Regexp::Common::lingua -- provide regexes for language related stuff. SYNOPSIS
use Regexp::Common qw /lingua/; while (<>) { /^$RE{lingua}{palindrome}$/ and print "is a palindrome "; } DESCRIPTION
Please consult the manual of Regexp::Common for a general description of the works of this interface. Do not use this module directly, but load it via Regexp::Common. $RE{lingua}{palindrome} Returns a pattern that recognizes a palindrome, a string that is the same if you reverse it. By default, it only matches strings consisting of letters, but this can be changed using the "{-chars}" option. This option takes a character class (default is "[A-Za-z]") as argument. If "{-keep}" is used, only $1 will be set, and set to the entire match. This pattern requires at least perl 5.6.0. SEE ALSO
Regexp::Common for a general description of how to use this interface. AUTHOR
Damian Conway (damian@conway.org) MAINTAINANCE
This package is maintained by Abigail (regexp-common@abigail.be). BUGS AND IRRITATIONS
Many regexes are missing. Send them in to regexp-common@abigail.be. LICENSE and COPYRIGHT This software is Copyright (c) 2001 - 2009, Damian Conway and Abigail. This module is free software, and maybe used under any of the following licenses: 1) The Perl Artistic License. See the file COPYRIGHT.AL. 2) The Perl Artistic License 2.0. See the file COPYRIGHT.AL2. 3) The BSD Licence. See the file COPYRIGHT.BSD. 4) The MIT Licence. See the file COPYRIGHT.MIT. perl v5.16.2 2010-02-23 Regexp::Common::lingua(3)
Man Page

5 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

Profanity

Here is a post that clearly violated the rule against requesting email responses. But what is the feeling about the profanity? auswipe seems to feel that is against the rules. But I don't really see an explicit prohibition. Is this an oversight in the rules? Or should profanity simply be... (11 Replies)
Discussion started by: Perderabo
11 Replies

2. Post Here to Contact Site Administrators and Moderators

Whats the go?

woofie, Your posts are being deleted because your use of profanity. I am close to changing your status to read only. In fact, if you argue with the mods again, I will ban you from these boards. Neo (1 Reply)
Discussion started by: Neo
1 Replies

3. What is on Your Mind?

Apology

Sorry to anyone who was offended by my post here goes... I didnt realize i had used profanity and yes it was quite some time ago but i just got around to coming on here long enough to write this. So once again sorry for the profanity, i didn't even think i was using it but i do that... (1 Reply)
Discussion started by: Corrail
1 Replies

4. Shell Programming and Scripting

Convert a list of word/terms into their Regexp representation

Ok this might sound pretty weird but here is the request. Running on a linux system in bash or Perl (i really don't know perl but the end user has a few pearl script already) Start File looks something like this (4000 entries) TEST PLAN T//TF T-TF TEST (T) Hacker ... I am thinking about... (3 Replies)
Discussion started by: oly_r
3 Replies

5. Shell Programming and Scripting

Command option substitution?

Hi folks, I totally dislike asking questions in forums but this one eats up to much of my time I need to spend on other topics. I have a shell-script in which I call a terminal. I want to invoke bash inside the terminal and print a message inside bash with aid of a here document. See... (7 Replies)
Discussion started by: bluntroller
7 Replies