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]+/?$"