> 텍스트내에서 숫자만을 쿼리하는 방법
public class Example
{
public static void Main()
{
Console.Write("<< 문자열내의 숫자만를 쿼리하는 방법 >> \n");
string aString = "IEnum111erable<char457>- stringQuery-5657 =";
// 숫자인 캐릭터를 추출.
IEnumerable<char> stringQuery =
from ch in aString
where Char.IsDigit(ch)
select ch;
// 출력
foreach (char c in stringQuery)
Console.Write(c + " ");
Console.WriteLine(System.Environment.NewLine);
Console.WriteLine("Press any key to exit");
Console.ReadKey();
}
}