using System;
using System.Text.RegularExpressions;
public class Program
{
public static void Main()
string str = "argo-sync-trigger-#{appname}.yaml";
str = Regex.Replace(str, "#{.+?}", "");
str = str.Replace("-.", ".");
Console.WriteLine(str);
}