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.
正規表現を使用して「+」および「-」記号を検証する必要がありますが、検証を次の文字列に入れる必要があります。
"^[A-Za-z0-9.&,@!?#%'$()/\\\\ \\-_]+$"
どうすればそれができるか教えてもらえますか?
「-」はすでに正規表現と一致しています。そのように「+」を追加するだけです:
"^[A-Za-z0-9.&,@!?#%'$()/\\ \-_+]+$"
(実際に"^[A-Za-z0-9.&,@!?#%'$()/\\\\ \\-_+]+$")
"^[A-Za-z0-9.&,@!?#%'$()/\\\\ \\-_+]+$"
マイナスはすでに正規表現に含まれています。検証済みの文字のセットにプラス文字を追加するには、次のように追加します。