string result = string.Empty;
project.Variables["str"].Value = "Название 1' 2' 3' 123' ";
var table = project.Tables["Таблица 1"];
var mass = project.Variables["str"].Value.Split('\'');
foreach(var s in mass)
{
string res = "";
res = Regex.Match(s, @"\d+").Value;
if(string.IsNullOrWhiteSpace(res)) continue;
res = "Название " + res;
result += res.Trim() + ";";
}
result = result.Remove(result.Length-1, 1);
table.AddRow(result);