TTevinchintevinch.hashnode.dev·1d ago · 6 min readPreserve decimal commas when pasting into StreamlitWhen someone copies 23,4 from a spreadsheet, they usually expect to keep that value. If an input column interprets the comma as a thousands separator, the result can become 234 before the application 00
TTevinchintevinch.hashnode.dev·1d ago · 5 min readWhy splitting spreadsheet clipboard text on newlines breaks pasted tablesA spreadsheet cell can contain a newline. A selected range can also end with empty cells. Both are easy to lose when a web form treats pasted text as text.trim().split('\n') and then splits each line 00