Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从用户那里获取输入并将其存储在数组中。例如,如果用户输入类似python,Html,cssorpython html css或python/html/css。我必须将它存储在数组中,就像a[0]=python; a[1]=html; a[2]=css;它应该忽略逗号(,)和空格和斜杠(/)
python,Html,css
python html css
python/html/css
a[0]=python; a[1]=html; a[2]=css;
听起来您正在尝试将字符串简单地处理为具有多个分隔符的列表。快速搜索发现了另一个类似的 StackOverflow 问题,这可能会导致答案。
您也许可以使用“ re.split()”功能完成您正在寻找的东西。
re.split()
https://stackoverflow.com/a/4998688/1011998