[RESOLVED] regular expressions !?
I’m using Microsoft Visual Web Developer 2005 Express Edition (fantastic program defiantly worth using over web matrix) and I want to no where can I find the class that creates the regular expressions valuator that you can add to a web page to enter a regular expressions into and set the target for a text box that you want to use the regular expression for when validating it's contents? The reason I want to no this is i want to see by looking at the code how it works, how it can take any regular expression and understand how to use it. I am hoping to make a flash version of it but will need to look at how the code for it works to create a flash equivalent :confused:
Re: regular expressions !?
Does VWD have a toolbox? Look in that area for the Regular Expression validator, drag it over to your form, and assign its ControlToValidate.
Re: regular expressions !?
I could not find the code that creates the object or governs how it works but i found another way of doing what I wanted.
Just so you no Microsoft Visual Web Developer 2005 Express Edition is free and if you do anything in asp.net then this is a program you just have to use, its got code prompting like visual basics but is for asp.net and is so truly easy to use and work with. Defiantly give it a try...you thank me after that you did....what do most asp developers use to do their coding in ??? I assumed they just used web matrix or maybe dreamweaver ?
If you have not already tried this then do as it is simply amazing and defiantly worth while using : http://msdn.microsoft.com/vstudio/express/vwd/download/
Cheers for the help :thumb:
Re: [RESOLVED] regular expressions !?
http://keithratliff.com/transfer/regexwin.zip
I wrote a small app I use to test my regular expressions. Download, compile, enjoy.
As for learning Regular Expressions, I urge you to get the VisiBone Regular Expressions card from them...
Most of the card is reproduced on their Web site, here:
http://www.visibone.com/regular-expressions/
Re: [RESOLVED] regular expressions !?
Thanks for that...if your interested in testing regular expression’s to use and test, you can find the best site ever full or regular expression methods to use and test here: http://regexlib.com/ ;)
Re: [RESOLVED] regular expressions !?
Actually, I tend to be pretty good at writing them myself. Going online to see if someone already wrote something I need would be a waste of time as I usually can write them faster myself than the time it takes to Google it =)
Re: [RESOLVED] regular expressions !?
Kewl...bet that’s handy, on the most part I can do very basic ones lol but the site I mentioned before has some very complex any handy ones like dealing with date validation that takes into account leap years, valid day of the month ensuring that the month has i.e. 31 days in it if the date value is 31 for the day ...stuff like that I find handy ;)
Re: [RESOLVED] regular expressions !?
Yep =)
Another thing about writing them yourself -- you tend to understand why they work, which means you can also usually determine why they don't, when they don't. (But that never happens to me of course, oh no, never...)
Re: [RESOLVED] regular expressions !?
lol I'll believe you ;) ...When it comes to writing regular expressions is it a universal code that is always the same for all code languages?
Re: [RESOLVED] regular expressions !?
Usually yes, but then Microsoft and Macromedia tend to do their own thing....
Re: [RESOLVED] regular expressions !?
Re: [RESOLVED] regular expressions !?
Can you guys offer any suggestions for this thread
http://www.vbforums.com/showthread.p...23#post2528923
A lot of string manupulation, I'm using webrowsercontrol to get text and I'm now consdering regex to parse it.
Re: [RESOLVED] regular expressions !?
Seams like you got enough help on that thread, is their something in particular you are trying to achieve ? :ehh: