Regex to match words with a length of 1 to 3 will \b\w{1,3}\b, replace these matches with an empty string.
Regex re = new Regex(@"\b\w{1,3}\b");
var result = re.Replace(input, "");
, :
Regex re = new Regex(@"\s*\b\w{1,3}\b\s*");
var result = re.Replace(input, " ");
(Altho / .)