Given an input string such as "KK1234KK" how can I have it print it out with additional formatting: "KK-1234-KK"? In code I had hoped to be able to do something like this:
string LicensePlate = "KK1234KK";
Console.WriteLine(string.Format("Custom: {0:##-####-##}", LicensePlate));