I'm trying to geet my program to ignore the strings in an array which contains all sorts of special characters and print the ones which do not contain any the array that I'm try to get my program to read is as follows
TestCase[] testCases = {
new TestCase("", false),
new TestCase("5875123699", true),
new TestCase("123456", false),
new TestCase("12312312S1", false),
new TestCase("1234567841", true),
new TestCase("12312312312", false),
new TestCase("2222222222", false),
new TestCase("2222222232", true),
new TestCase("-875123699", false),
new TestCase("58751236.9", false),
new TestCase(null, false),`