ছাড়াই 2 ছাড়াই 4 টি অক্ষর with
টিএক্সআর ভাষার রেজেজ ইঞ্জিনে, একটি খালি অক্ষর শ্রেণীর সাথে []
কোনও অক্ষর মেলে না এবং তাই কোনও স্ট্রিং নেই। এটি এমনভাবে আচরণ করে কারণ অক্ষর শ্রেণীর জন্য একটি চরিত্রের মিল প্রয়োজন, এবং যখন এটি খালি হয় এটি নির্দিষ্ট করে যে কোনও চরিত্র এটি সন্তুষ্ট করতে পারে না।
আর একটি উপায় হ'ল /.*/
পরিপূরক অপারেটরটি ব্যবহার করে "খালি সহ সমস্ত স্ট্রিংয়ের সেট সেট করুন" /~.*/
। এই সেটটির পরিপূরকটিতে কোনও স্ট্রিং নেই, এবং তাই কোনও কিছুর সাথে মেলে না।
ম্যান পৃষ্ঠায় এটি সমস্ত নথিভুক্ত করা হয়েছে:
nomatch
The nomatch regular expression represents the empty set: it
matches no strings at all, not even the empty string. There is
no dedicated syntax to directly express nomatch in the regex
language. However, the empty character class [] is equivalent
to nomatch, and may be considered to be a notation for it. Other
representations of nomatch are possible: for instance, the regex
~.* which is the complement of the regex that denotes the set of
all possible strings, and thus denotes the empty set. A nomatch
has uses; for instance, it can be used to temporarily "comment
out" regular expressions. The regex ([]abc|xyz) is equivalent to
(xyz), since the []abc branch cannot match anything. Using [] to
"block" a subexpression allows you to leave it in place, then
enable it later by removing the "block".
স্ল্যাশগুলি প্রতি সেজে রিজেক্স সিনট্যাক্সের অংশ নয়; এগুলি কেবলমাত্র বিরামচিহ্ন যা এস-এক্সপ্রেশন স্বরলিপিতে রেজিক্সগুলি সীমিত করে। সাক্ষী:
# match line of input with x variable, and then parse that as a regex
#
$ txr -c '@x
@(do (print (regex-parse x)) (put-char #\newline))' -
ab.*c <- input from tty: no slashes.
(compound #\a #\b (0+ wild) #\c) <- output: AST of regex