You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default "StringManipulatorTool" is enabled, but the regex pattern in AddDefaultManipulator() "[^( -~)\n\r\t]+" removes all non-ASCII characters, which is a problem for any non-english migrations. Could the pattern be updated to allow for at least unicode letters and numbers?
Perhaps something like [^\u0000-\uFFFF]+ would work?