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.
include/except 正規表現を入力する方法について疑問に思っていました。たとえば、正規表現を書くには
空の文字列を含むすべてのバイナリ文字列と空の文字列を除くすべてのバイナリ文字列。
また、1 で始まり 1 で終わる文字列の正規表現はどのように記述しますか?
yourText.matches("|1|^1[01]*1$"); //all binaries with empty string
と、
yourText.matches("1|^1[01]*1$"); //all binaries except empty string