User Portlet User Portlet

Sean Cheren
Discussions
Thanks for confirming this workaround! We're working hard to make FFmpeg work as out of the box as possible.
What you get is a list of sheets, then rows/cols for each sheet (hence the 3 dimensions). If your data is structured in a way where all you need is all of the numbers in one flat list, perhaps `Flatten[Import[...]]` is enough.
This really is super cool, and looks similar to work we've done recently in Wolfram Language. Keep your eyes peeled for mail thread related elements coming in WL v13!
Several bugs were fixed in the CSV and TSV formats and the performance was dramatically improved between version 10 and 12. Leading and trailing spaces that are part of non-quoted fields are ignored as this is by far the most common behavior and...
I agree this isn't related to encoding, it's best to stick to UTF-8. There is a hidden option to CSV and TSV Export "ForceDelimieters" that controls whether the setting for "TextDelimiters" is wrapped around text fields always, or only when needed....
Check `ref/format/Table` for more options but `FieldSeparators` is what you're looking for: ``` Export["test.txt", t, "Table", "FieldSeparators" -> " "] ```
The documentation for STL says it uses the "MeshRegion" element to export by default. Looks like there's a "MeshRegion" property that exports ok for me: ``` In[30]:= Export["test.stl", Entity["Polyhedron", "RhombicHexecontahedron"]["MeshRegion"]]...
The Windows version of this post can be found [here](https://community.wolfram.com/groups/-/m/t/2177967) The macOS version of this post can be found [here](https://community.wolfram.com/groups/-/m/t/2189614)
The macOS version of this post can be found [here](https://community.wolfram.com/groups/-/m/t/2189614) The Linux version of this post can be found [here](https://community.wolfram.com/groups/-/m/t/2188963)
The reason that this is being interpreted as the number 10 is it thinks "c" is the currency token for cents. The "RawData" element which does no processing at all is similar to the option "Numeric" -> False. This is fine if you only want strings, but...