Is there an easier way to split CamelCase? Perhaps anything builtin to avoid RegularExpression?
RegularExpression
StringJoin[StringSplit["AntiqueWhite and LavenderBlush", RegularExpression["([a-z])([A-Z])"] -> "$1 $2"]]
Out[]= "Antique White and Lavender Blush"