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.
我没有用正则表达式做任何事情,所以我需要一些帮助。
谁能告诉我如何为这样的字符串制作正则表达式:
/7slDas/
以斜杠开头,可以是任何数字或字母(大写和小写)
在 Java 中,您可以使用此正则表达式:
"^/[a-zA-Z0-9]+/?$"
为了建立其他答案 - 您可以使用它在文本中找到确切的模式,无论模式是在文本的开头还是在中间的某个地方:[/][a-zA-Z0-9]+[ /]
如果要在行首查找,请在表达式的开头添加插入符号 ^。要查找并在行尾使用表达式末尾的美元符号