Java + Eclipse + How to use existing libraries

Thursday, December 16, 2010

You can find a good blog post regarding the topic here.

Check whether there's some given SET of characters is in a String (C#)

Monday, April 26, 2010

System.Text.RegularExpressions.Regex.IsMatch(MyString, @"[^a-z0-9A-Z+#.]")

"^" sign to take the rest of the characters which are not in the set defined.