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.
在文件系统上创建新目录之前,我会搜索正则表达式模式来检查新目录的名称。例如,目录名称中不允许使用“/”。我没有正则表达式的经验,所以欢迎任何帮助。
\\w+
到
这里是文档。
编辑
Log.e("TAG", "Helloworld " + "helloworld\\".matches(("\\w+")));
最后一个对我来说是假的。