Author |
Topic |
|
Etymon
Advanced Member
United States
2385 Posts |
Posted - 13 July 2009 : 06:37:03
|
You know how wildcards are not allowed in the username such below?
* You may not use any of these chars in your username !#$%^&*()=+{}[]|\;:/?>,<'
Is there a regex expression that will do the same thing? The regex expressions I find still allow certain wildcards like #%+ |
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
Posted - 13 July 2009 : 06:47:48
|
what exactly did you want the regex to do ? |
|
|
Etymon
Advanced Member
United States
2385 Posts |
Posted - 13 July 2009 : 10:59:39
|
I'm trying to pre-filter member names using auto-complete with jQuery. |
|
|
Etymon
Advanced Member
United States
2385 Posts |
Posted - 15 July 2009 : 00:15:07
|
Well, I am having a little bit of trouble still finding the regex I would like to use.
I did find something that prevents characters from being entered which is actually better, but, alas, I don't know how it is done.
Would someone mind taking a look at the first text box on this page (http://www.ajaxcontroltoolkit.com/FilteredTextBox/FilteredTextBox.aspx) where it says Only digits are allowed here:? Try typing in anything other than a number, and you will see what I am talking about. The character is rejected and cleared before it is accepted. I'd like to do that with this combination:
alphanumeric space underscore
|
|
|
Etymon
Advanced Member
United States
2385 Posts |
Posted - 15 July 2009 : 02:44:54
|
I found this: http:// .internet.com/forms/val-num-or-char.html
Though it's not as clean as the one I was asking about, it will work for now. |
Edited by - Etymon on 15 July 2009 02:45:28 |
|
|
Etymon
Advanced Member
United States
2385 Posts |
Posted - 15 July 2009 : 02:46:42
|
Well, that is interesting.
The link above is supposed to look something like this (the area in red should have been included in the link above):
http://javascript.internet.com/forms/val-num-or-char.html
|
Edited by - Etymon on 15 July 2009 02:51:53 |
|
|
Etymon
Advanced Member
United States
2385 Posts |
Posted - 15 July 2009 : 02:49:46
|
OK, this works when posted directly:
http://javascript.internet.com/forms/val-num-or-char.html
And this does not work when posted using the [ url ] [ /url ] tags:
http:// .internet.com/forms/val-num-or-char.html
Rui? HuwR? Guys? |
Edited by - Etymon on 15 July 2009 02:52:31 |
|
|
Carefree
Advanced Member
Philippines
4207 Posts |
Posted - 15 July 2009 : 10:15:28
|
quote: Originally posted by Etymon
OK, this works when posted directly:
http://javascript.internet.com/forms/val-num-or-char.html
And this does not work when posted using the [ url ] [ /url ] tags:
http:// .internet.com/forms/val-num-or-char.html
Rui? HuwR? Guys?
Go look at the bugs forum. I posted a fix to that last year. |
|
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
Posted - 15 July 2009 : 10:18:54
|
some of the characters you are trying to reject won't work in a regex as they are special control characters used by regex itself, which may be why you are having a problem.
the word javascript is being filtered out of the url by the forum code (this was deliberate) |
|
|
Etymon
Advanced Member
United States
2385 Posts |
Posted - 15 July 2009 : 12:23:09
|
Ah! Yes, the regex is interesting. I found a javascript to help out with that.
The link thing. I shoulda' looked before I leaked on that. Thanks Huw! Thanks Carefree! |
|
|
SiSL
Average Member
Turkey
671 Posts |
|
Etymon
Advanced Member
United States
2385 Posts |
Posted - 15 July 2009 : 13:15:25
|
I saw that. I think it works for allowing a space. Well, the lowercase representation \s
Thank you SiSL! |
|
|
SiSL
Average Member
Turkey
671 Posts |
|
Shaggy
Support Moderator
Ireland
6780 Posts |
Posted - 16 July 2009 : 04:42:44
|
If you're just starting out with regular expressions, this is a fantastic site for learning and this is a great piece of software for testing.
|
Search is your friend “I was having a mildly paranoid day, mostly due to the fact that the mad priest lady from over the river had taken to nailing weasels to my front door again.” |
|
|
Etymon
Advanced Member
United States
2385 Posts |
Posted - 16 July 2009 : 19:35:59
|
Hey! Thank you Shaggy! |
|
|
Shaggy
Support Moderator
Ireland
6780 Posts |
Posted - 17 July 2009 : 04:50:15
|
You're welcome, dude
|
Search is your friend “I was having a mildly paranoid day, mostly due to the fact that the mad priest lady from over the river had taken to nailing weasels to my front door again.” |
|
|
|
Topic |
|