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
The readme says that it supports parsing into Vec by separating the values by commas.
If I want to parse a variable as Vec<PathBuf> where each path could contain commas, would it work by putting that path in single quotes?
E.g.
FOLDERS='C:\Foo,Bar',D:\Baz
resulting in vec![r"C:\Foo,Bar", r"D:\Baz"]?
And if there is a space after the separating comma, it won't work, right?