Hello!
I’m trying to copy-paste multiple values into a multiselect, but it doesn’t work.
I might take the longer route and add a text input that get splitted into a list and then used as default, but this smells a lot from a UX perspective.
import streamlit as st
values = ["a", "b", "c", "d", "e"]
for sep in [",", " ", "|", "\n"]:
st.code(sep.join(values))
selected = st.multiselect("Select many", values)
st.success(selected)
Thanks