473,406 Members | 2,343 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Are you a RegEx bandido?

Its not that I hate RegEx its that I have to relearn the same stuff every
couple of months because I forget what I last learned. Common eh? So... I'm
working on an expression to validate a MIME Type and I have a fairly decent
pattern set up but it needs some work...

<%--
MIME Type
match: type/name
match: type/name5
match: type/x-name
match: type/x-name-name
match: type/x-name+name
match: type/x-name_name
match: x-type/name

fail: type-/name
fail: type/name-
fail: type//name
fail: type_type/name
ValidationExpression="^([a-z]+-?[a-z]+)/([a-zA-Z0-9]+-?\+?\.?_?[a-zA-Z0-9]+)+$"
--%>
<asp:RegularExpressionValidator
ID="Validator1" runat="server"
ControlToValidate="TextBox1"
ErrorMessage="Invalid MIME Type Format"
Display="Dynamic"
Font-Bold="true"
SetFocusOnError="true"
ValidationExpression="^([a-z]+-?[a-z]+)/([a-zA-Z0-9]+-?\+?\.?_?[a-zA-Z0-9]+)+$"
/>

That part of the string that follows the / character allows a single
instance of one of the following characters multuple times [-?|+?|.?|_?] but
the problem is I don't know how to prevent two such allowable characters to
preceed or follow one another...

// currently matched but this pattern needs to fail
type/x-.name
// currently matched but this pattern needs to fail
type/x.-name

Got any idea how to express this rule?

Oct 16 '08 #1
2 1218
What about:

^([a-z]+-?[a-z]+)/([a-zA-Z0-9]+[-+_\.]?[a-zA-Z0-9]+)+$

I am not familliar with the rules for mime type syntax, but this should
return valid results for the examples you have provided.
Oct 16 '08 #2
Yup good point; add another class...
[-\+_\.]?

"A Nonymous" <an*******@hotmail.comwrote in message
news:Xn*********************************@207.46.24 8.16...
What about:

^([a-z]+-?[a-z]+)/([a-zA-Z0-9]+[-+_\.]?[a-zA-Z0-9]+)+$

I am not familliar with the rules for mime type syntax, but this should
return valid results for the examples you have provided.
Oct 17 '08 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Jon Maz | last post by:
Hi All, Am getting frustrated trying to port the following (pretty simple) function to CSharp. The problem is that I'm lousy at Regular Expressions.... //from...
9
by: Tim Conner | last post by:
Is there a way to write a faster function ? public static bool IsNumber( char Value ) { if (Regex.IsMatch( Value.ToString(), @"^+$" )) { return true; } else return false; }
20
by: jeevankodali | last post by:
Hi I have an .Net application which processes thousands of Xml nodes each day and for each node I am using around 30-40 Regex matches to see if they satisfy some conditions are not. These Regex...
17
by: clintonG | last post by:
I'm using an .aspx tool I found at but as nice as the interface is I think I need to consider using others. Some can generate C# I understand. Your preferences please... <%= Clinton Gallagher ...
6
by: Extremest | last post by:
I have a huge regex setup going on. If I don't do each one by itself instead of all in one it won't work for. Also would like to know if there is a faster way tried to use string.replace with all...
7
by: Extremest | last post by:
I am using this regex. static Regex paranthesis = new Regex("(\\d*/\\d*)", RegexOptions.IgnoreCase); it should find everything between parenthesis that have some numbers onyl then a forward...
3
by: aspineux | last post by:
My goal is to write a parser for these imaginary string from the SMTP protocol, regarding RFC 821 and 1869. I'm a little flexible with the BNF from these RFC :-) Any comment ? tests= def...
15
by: morleyc | last post by:
Hi, i would like to remove a number of characters from my string (\t \r \n which are throughout the string), i know regex can do this but i have no idea how. Any pointers much appreciated. Chris
0
by: Karch | last post by:
I have these two methods that are chewing up a ton of CPU time in my application. Does anyone have any suggestions on how to optimize them or rewrite them without Regex? The most time-consuming...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.