this is my program
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
char[] d = new char[12];
string dd = "5Ed5v3a4r3d4";
for (int i = 0; i < dd.Length; i++)
{
d[i] = dd[i];
{
if (d[i] >= 'a' && d[i] <= 'z' || d[i] >= 'A' && d[i] <= 'Z')
{
Console.WriteLine(d[i]);
}
}
}
Console.ReadLine();
}
}
}
now,i want that I use the term conditional:
if (d[i] >= 0 && d[i] <= 9)
What should I do?
If I just want the resulting string in another string to copy what I should do?
Thank you.