Erinevus lehekülje "Itx8071-task1" redaktsioonide vahel

Allikas: Kursused
Mine navigeerimisribale Mine otsikasti
 
(ei näidata sama kasutaja 56 vahepealset redaktsiooni)
1. rida: 1. rida:
 
This homework assignment requires the knowledge from Module 3.
 
This homework assignment requires the knowledge from Module 3.
  
=== Please write a regular expression for matching the sequence of hostnames and optional port specifications which follows these rules: ===
+
=== Please write a regular expression for matching the sequence of integer expressions which follows these rules: ===
  
# The sequence consists of one or more parts. If there are two or more parts, they are separated with a comma (",") character.
+
1) The sequence consists of one or more elements. If there are two or more elements, they are separated with a comma (,) character.
# Each part of the sequence is a hostname which must consist of letters only, with optional port specifications following the hostname. If port specifications are present, each specification is preceded by a single colon (":") character. A valid specification consists of decimal digits that define the port number, and port number may be followed by either "/tcp" or "/udp" suffix (other suffixes are not allowed).
 
  
Please note that for accomplishing the task, one regular expression has to be submitted which is suitable for use with the ''egrep'' or ''pcregrep'' tool. It is not acceptable to submit the solution in a fragmented way (e.g., several isolated expressions for addressing different parts of the task). Also, it is not allowed to submit programs in Java, Python, Perl (or any other language) for the solution. Finally, if the solution only works with the examples provided below but does NOT meet the task specification, it will be treated as incorrect.
+
2) Each element of the sequence is an expression that can consist of digits 0 1 2 3 4 5 6 7 8 9 and the plus (+), minus (-), asterisk (*), and slash (/) characters. No other characters (such as spaces or letters) are permitted in the element. The element must contain one or more integer numbers, where the integer number is defined as a non-empty sequence of digits. If the element has more than one integer number, two consecutive integer numbers must be separated with a single plus, minus, asterisk or slash character. If the asterisk or slash separates two integer numbers, an optional minus (-) character can appear before the second (right-hand side) integer number. However, if two integer numbers are separated by plus or minus character, the minus prefix is not allowed for the second integer. Also, an optional minus (-) character can appear before the first integer number in the element (in other words, the first character of the element can be either a minus or a digit).
 +
 
 +
For example, the following are valid sequence elements:
 +
 
 +
012
 +
-1
 +
2+3
 +
-0+12-7
 +
22+90*-2/60
 +
-100+16/-2*-30
 +
 
 +
However, the following sequence elements are invalid:
 +
 
 +
1 + 2 (the space character appears both before and after the plus character, but the use of spaces is illegal)
 +
1%2 (an illegal character % appears between two integer numbers)
 +
12C (an illegal character C appears after the integer number)
 +
12--2 (if the minus character separates two integer numbers, it is not allowed to use the minus prefix for the second integer)
 +
 
 +
Please note that for accomplishing the task, '''one regular expression has to be submitted which is suitable for use with the egrep or pcre2grep tool'''. It is not acceptable to submit the solution in a fragmented way (e.g., several isolated expressions for addressing different parts of the task). Also, it is not allowed to submit programs in Java, Python, Perl (or any other language) for the solution. Finally, if the solution only works with the examples provided below but does NOT meet the task specification, it will be treated as incorrect.
  
 
=== Examples of sequences the regular expression must match: ===
 
=== Examples of sequences the regular expression must match: ===
  
  myhost:123:22/tcp
+
  1+2+3  (the sequence has one valid element)
(the sequence has one valid part -- a hostname with two port specifications)  
+
 
+
  10,1+2+3,-20  (the sequence has three valid elements)
  dbserver:161/udp:80,mailserver:25/tcp
+
 
(the sequence has two valid parts)  
+
  -0,2*-3+7,-11,33/-11*-5,-12/6,19,77,1-2+3-4+5 (the sequence has eight valid elements)
 
  fileserver:2049:22/tcp:8080,mailserver:443/tcp:22/tcp:123/udp,myhost
 
(the sequence has three valid parts, with the first and second parts having port specifications)
 
 
serverA,serverB,serverC:20:21:22:23:25,serverD,serverE
 
  (the sequence has five valid parts, where only the third hostname has port numbers)  
 
  
 
=== Examples of sequences the regular expression must NOT match: ===
 
=== Examples of sequences the regular expression must NOT match: ===
  
  serverA, serverB:80
+
  22+11,   (there is a comma after the first sequence element, but the second element is missing)
(the second part begins with a space character which is illegal)  
+
 
+
  120+,3-4  (the first sequence element contains a plus character not followed by integer number)
  serverA 22,myhost
+
 
(the first part contains a space character which is illegal)  
+
  -12-33,12+-1,5*6-3  (the second sequence element contains a plus character which is followed by a negative integer, but it is not allowed to use the minus character after plus)
+
 
  myhost:80,
+
  1+2,,3+4  (the second sequence element is missing)
(the first part ends with comma, but there is no following second part)  
+
 
   
+
  11,12,+13  (the third sequence element starts with a plus character which is allowed only as a separator between two integer numbers)
myhost6
+
 
  (the hostname contains an illegal character 6)  
+
  12^3,2+3,55//11  (the first sequence element contains an illegal character ^; also the third element contains two consecutive slash characters, while only one is allowed)
 
+
 
myhost:9A
+
  1+2+3,12*,2/(the second sequence element ends with an asterisk character which is allowed only as a separator between two integer numbers)
  (the port number contains an illegal character A)
+
 
+
  11,45+3, 100  (there is an illegal space character after the second separating comma)
myhost::80
+
 
(two colons precede the port number)  
+
  60 ,-4+0 (there is an illegal space character before the first separating comma)
+
 
  myhost:80/
+
  --10A  (the sequence has one element which starts with two minus characters, while only one minus is allowed; also, the element ends with an illegal character A)
(port number is followed by /, but there is no transport protocol string)  
 
 
server:80tcp
 
  (there is no separating / character between port number and transport protocol string)
 
 
 
  serverA,,serverC
 
  (the second part of the sequence is empty)  
 
 
 
!"serverA:121,myhost,serverB:22
 
  (the sequence begins with illegal characters)
 
 
serverA:80,myhost:312/tcp+T
 
(the sequence ends with illegal characters)
 

Viimane redaktsioon: 21. september 2024, kell 13:57

This homework assignment requires the knowledge from Module 3.

Please write a regular expression for matching the sequence of integer expressions which follows these rules:

1) The sequence consists of one or more elements. If there are two or more elements, they are separated with a comma (,) character.

2) Each element of the sequence is an expression that can consist of digits 0 1 2 3 4 5 6 7 8 9 and the plus (+), minus (-), asterisk (*), and slash (/) characters. No other characters (such as spaces or letters) are permitted in the element. The element must contain one or more integer numbers, where the integer number is defined as a non-empty sequence of digits. If the element has more than one integer number, two consecutive integer numbers must be separated with a single plus, minus, asterisk or slash character. If the asterisk or slash separates two integer numbers, an optional minus (-) character can appear before the second (right-hand side) integer number. However, if two integer numbers are separated by plus or minus character, the minus prefix is not allowed for the second integer. Also, an optional minus (-) character can appear before the first integer number in the element (in other words, the first character of the element can be either a minus or a digit).

For example, the following are valid sequence elements:

012
-1
2+3
-0+12-7
22+90*-2/60
-100+16/-2*-30

However, the following sequence elements are invalid:

1 + 2 (the space character appears both before and after the plus character, but the use of spaces is illegal)
1%2 (an illegal character % appears between two integer numbers)
12C (an illegal character C appears after the integer number)
12--2 (if the minus character separates two integer numbers, it is not allowed to use the minus prefix for the second integer)

Please note that for accomplishing the task, one regular expression has to be submitted which is suitable for use with the egrep or pcre2grep tool. It is not acceptable to submit the solution in a fragmented way (e.g., several isolated expressions for addressing different parts of the task). Also, it is not allowed to submit programs in Java, Python, Perl (or any other language) for the solution. Finally, if the solution only works with the examples provided below but does NOT meet the task specification, it will be treated as incorrect.

Examples of sequences the regular expression must match:

1+2+3   (the sequence has one valid element)
10,1+2+3,-20   (the sequence has three valid elements)
-0,2*-3+7,-11,33/-11*-5,-12/6,19,77,1-2+3-4+5  (the sequence has eight valid elements)

Examples of sequences the regular expression must NOT match:

22+11,   (there is a comma after the first sequence element, but the second element is missing)
120+,3-4   (the first sequence element contains a plus character not followed by integer number)
-12-33,12+-1,5*6-3   (the second sequence element contains a plus character which is followed by a negative integer, but it is not allowed to use the minus character after plus)
1+2,,3+4   (the second sequence element is missing)
11,12,+13   (the third sequence element starts with a plus character which is allowed only as a separator between two integer numbers)
12^3,2+3,55//11   (the first sequence element contains an illegal character ^; also the third element contains two consecutive slash characters, while only one is allowed)
1+2+3,12*,2/3   (the second sequence element ends with an asterisk character which is allowed only as a separator between two integer numbers)
11,45+3, 100   (there is an illegal space character after the second separating comma)
60 ,-4+0  (there is an illegal space character before the first separating comma)
--10A   (the sequence has one element which starts with two minus characters, while only one minus is allowed; also, the element ends with an illegal character A)