using System;
using System.Text.RegularExpressions;
public class Program
{
public static void Main()
//https://regex101.com/r/oD1fD2/1
var postCode = "EC1A1BB";
postCode = Regex.Replace(postCode, @"^(.*)(\d)", @"$1 $2");
Console.WriteLine(postCode);
}