Click here to Skip to main content
15,891,253 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Can regular expression examines blank TextBox?
If yes, then whats the code for it?
I have search on net but its not too easy.
Is there any Regex code for examining TextBox is blank?

Thanks in advance
Please help.
Posted
Updated 29-Sep-12 8:41am
v2

1 solution

You don't need Reguar expressions for that just use String.IsNullOrWhiteSpace as here:
C#
String.IsNullOrWhiteSpace(textBox1.Text);

See this link:
http://msdn.microsoft.com/en-us/library/system.string.isnullorwhitespace.aspx[^]
 
Share this answer
 
Comments
sariqkhan 29-Sep-12 13:50pm    
thanx. I am a learner so i dont know much about .net
thanx once again
[no name] 29-Sep-12 14:43pm    
Did you know how to post a question?
fjdiewornncalwe 29-Sep-12 13:54pm    
+5. Clean and simple.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900