From 4fdd55879a9a768d1b2f22c1bd986cf24c112f1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D0=B0=D1=84=D0=B8=D1=83=D0=BB=D0=BB=D0=B8=D0=BD?= Date: Mon, 15 Sep 2025 08:27:52 +0000 Subject: [PATCH] homework4 --- regexp-basic.properties.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 regexp-basic.properties.txt diff --git a/regexp-basic.properties.txt b/regexp-basic.properties.txt new file mode 100644 index 0000000..20ccc4b --- /dev/null +++ b/regexp-basic.properties.txt @@ -0,0 +1,16 @@ +task1 = abc*.+ +task2 = \w+.+123.* +task3 = .*\. +task4 = [c|m|f]an +task5 = [^b]og +task6 = [A-Z].* +task7 = waz{3,}up +task8 = a{2,}[bc]+ +task9 = \d+.* +task10 = \d.\s+.* +task11 = ^Mission: successful$ +task12 = ^(.*\w+)\.pdf$ +task13 = ^(.*(\d{4}+))$ +task14 = ^((\d{4}).(\d{2,4}+))$ +task15 = .*(cats|dogs) +task16 = .*. \ No newline at end of file