big letter block ?

These are old archives. They are kept for historic purposes only.
Post Reply
akin
Posts: 33
Joined: Wed Jun 22, 2005 8:41 am

big letter block ?

Post by akin »

full big letter. character. cedilla channel block ?

What is the regex?

Thank you
Jason
Posts: 570
Joined: Mon Jun 14, 2004 5:09 pm

Post by Jason »

What?

Paste an example here please
Why the hell can't my signature be empty?
"Your message contains too few characters."
akin
Posts: 33
Joined: Wed Jun 22, 2005 8:41 am

Post by akin »

Jason wrote:What?

Paste an example here please
WHAT

PASTE AN EXAMPLE HERE PLEASE

big char block
aquanight
Official supporter
Posts: 862
Joined: Tue Mar 09, 2004 10:47 pm
Location: Boise, ID

Post by aquanight »

Assuming you mean all caps...

/spamfilter + cN block - No_all_caps. ^(?-i)[^a-z]+$
akin
Posts: 33
Joined: Wed Jun 22, 2005 8:41 am

Post by akin »

aquanight wrote:Assuming you mean all caps...

/spamfilter + cN block - No_all_caps. ^(?-i)[^a-z]+$
tnx expert..
what is ^(?-i)
Syzop
UnrealIRCd head coder
Posts: 2112
Joined: Sat Mar 06, 2004 8:57 pm
Location: .nl
Contact:

Post by Syzop »

Heh, you sure that is a good idea aquanight? This also blocks things like:
<a> How old are you?
<b> 20
(b = blocked)
akin
Posts: 33
Joined: Wed Jun 22, 2005 8:41 am

Post by akin »

not 123456789 block !! humm just big char block A-Z
Syzop
UnrealIRCd head coder
Posts: 2112
Joined: Sat Mar 06, 2004 8:57 pm
Location: .nl
Contact:

Post by Syzop »

YES PLZTNX!
akin
Posts: 33
Joined: Wed Jun 22, 2005 8:41 am

Post by akin »

aquanight wrote:Assuming you mean all caps...

/spamfilter + cN block - No_all_caps. ^(?-i)[^a-z]+$
true

Code: Select all

^(?-i)[^a-z0-9]+$
akin
Posts: 33
Joined: Wed Jun 22, 2005 8:41 am

Post by akin »

<a>hi good
<b>:)
b block :wink: :? :?:
akin
Posts: 33
Joined: Wed Jun 22, 2005 8:41 am

Post by akin »

akin wrote:
aquanight wrote:Assuming you mean all caps...

/spamfilter + cN block - No_all_caps. ^(?-i)[^a-z]+$
true

Code: Select all

^(?-i)[^a-z0-9]+$

Code: Select all

^(?-i)[^a-z0-9:-?]+$
the end :)
aquanight
Official supporter
Posts: 862
Joined: Tue Mar 09, 2004 10:47 pm
Location: Boise, ID

Post by aquanight »

blah

^(?-i)[A-Z]+$
Jason
Posts: 570
Joined: Mon Jun 14, 2004 5:09 pm

Post by Jason »

SPACEBAR.

/spamfilter + cN block - No_all_caps. ^(?-i)([^a-z]*[A-Z][^a-z]*)$
Why the hell can't my signature be empty?
"Your message contains too few characters."
akin
Posts: 33
Joined: Wed Jun 22, 2005 8:41 am

Post by akin »

aquanight wrote:blah

^(?-i)[A-Z]+$
out of commission
Jason
Posts: 570
Joined: Mon Jun 14, 2004 5:09 pm

Post by Jason »

That will only block strings of nothing but capital letters. Use my regular expression.
Why the hell can't my signature be empty?
"Your message contains too few characters."
Post Reply