Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 answers
573 users
using System; using System.Linq; class Program { static void Main() { string str = "00 00000 00 0 0 000 00 0"; bool result = str.Any(ch => ch == ' ' || ch == '0'); Console.Write(result); } } /* run: True */