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.
我有以下regex内容应该从上传者的文件名中删除斜杠和其他路径信息。
regex
我还想删除文件名中的任何空格。我已经查看了有关此的其他问题,但无法弄清楚如何添加它。
我现在拥有的:/.*(\/|\\)/, ""
/.*(\/|\\)/, ""
您可以使用[\s\/\\]+删除所有斜杠和空格..
[\s\/\\]+
\s代表一个空间
\s
[]是一个匹配其中任何一个字符的字符类
[]
+匹配前面的字符 1 到多次
+