public static void Main()
var tekst = "15% przedpłaty 85% po B/L";
var tekstSplit = tekst.Split("%");
var procentPrzedplaty = 0;
var numer = string.Empty;
foreach(var item in tekstSplit)
var numer = new String(item.Where(Char.IsDigit).ToArray());
Console.WriteLine(numer);
procentPrzedplaty = numer.First();
procentPoBL = numer.Last();
Console.WriteLine(numer);
Console.WriteLine(procentPrzedplaty + " -- " + procentPoBL);
public string Nazwa {get;set;}