Trouble is, Flare may know how to deal with this just fine down the road when creating outputs, but my automation tooling has to perform painful gymnastics, such as
private string ReplaceIllegalFileChars(string name)
{
string retVal = name;
char[] chars = { '\u00A0', '\u0020' };//remove Flare's
retVal = retVal.Replace(chars[0], chars[1]);
return retVal;
}
What is Flare's logic for inserting
Is this subject to user control in any way? For example, can I turn it off?
Many thanks!