Windows Vista
Microsoft ISV
Windows Forms
.NET Development
VS Express Editions
Architecture
Visual C++
Visual J#
Visual FoxPro
Visual Studio
Visual C#
Visual Basic
Windows Live
VS Team System
SQL Server
Software Development Network>> .NET Development>> garbage characters
garbage characters
Hot Topic
How to pre-JIT dynamically generated MSIL?
How to Pause or sleep the background worker thread
Is .net framework 2.0 redistribuable freely redistribuable with commercial product
.NET Framework design guideline download ?
Enable/Disable network card
Windows service or IIS??
Find a record
System.valuetype
mailmessage.body text formatting
help needed with XSL Transformation
.NET Development
IIS with Authentication causing issues....
Best Practices: Generating Serial Numbers which contain informations?
An error occured while parsing EntityName
ASP.net 2 Xams
Writing data to a temp table
client side datatable select
USing Winsock in .net framework
Update Dataset
SqlConnection and thread safety
Calling Indexer using Reflection
garbage characters
Hi,
How can I findout if a string has garbage characters in it or normal alphanumberic characters
Thanks,
Answer this question
garbage characters
xied75
Depends on what you consider garbage. This regular expression allows characters, numbers, and whitespace:
Regex.IsMatch(TextBox1.Text,
"^[a-zA-Z0-9\s]+$"
)
garbage characters
Answer this question
garbage characters
xied75
Regex.IsMatch(TextBox1.Text,
"^[a-zA-Z0-9\s]+$")