Note: You are currently viewing documentation for Moodle 2.4. Up-to-date documentation for the latest stable version of Moodle may be available here: Preg question type.

Preg question type: Difference between revisions

From MoodleDocs
No edit summary
mNo edit summary
Line 1: Line 1:
Preg question type is a question type using regular expression pattern matching to find if studen response is correct. It is use Perl-compatible regular expressions dialect. For detailed description of regular expression syntax see http://www.nusphere.com/kb/phpmanual/reference.pcre.pattern.syntax.htm
The Preg question type is a question type that uses regular expressions (regexes) to check student's responses. Regular expressions give vast capabilities and flexibility to both teachers when making questions and students when writing answers to them. This documentation contains a part about expressions in general, a part about the regular expressions as a particular case of expressions and finally a part about the Preg question type itself. If you are familiar with the regex syntax you may skip first parts and go to the [[#Usage of the Preg question type|usage of the Preg question type]] section. More details about the regex syntax can be found at http://www.nusphere.com/kb/phpmanual/reference.pcre.pattern.syntax.htm.


Authors:
Authors:
# idea, design, question type code, behaviours code, regex parsing and error reporting - Oleg Sychev;
# Idea, design, question type and behaviours code, regex parsing and error reporting - Oleg Sychev.
# regex parsing, DFA regular expression matching engine - Dmitriy Kolesov.
# Regex parsing, DFA regex matching engine - Dmitriy Kolesov.
# NFA regular expression matching engine, backreferences, cross-testing, backup&restore - Valeriy Streltsov
# Regex parsing, NFA regex matching engine, testing of the matchers, backup&restore, subpatterns, backreferences and unicode support - Valeriy Streltsov.
We would gladly accept testers and contributors (see [[#Development plans|development plans]] section) - there is still more to be done than we have time. Thanks to Joseph Rezeau for been devoted tester of Preg question type releases and original authors of many ideas, that was implemented in Preg question type.
We would gladly accept testers and contributors (see the [[#Development plans|development plans]] section) - there is still more work to be done than we have time. Thanks to Joseph Rezeau for being devoted tester of Preg question type releases and being the original author of many ideas that was implemented in Preg question type.
 
===Notations===
Starting from Preg 2.1, notation feature allows you to choose notation in which regular expressions for answers will be written. '''Regular expression''' is a default one.
 
One exciting part of it is that you could use preg question type just as improved shortanswer, having access to the hinting facility without any need to understand regular expressions at all! Just choose '''Moodle shortanswer''' notation and you could just copy answers from you shortanswer questions. '*' wildcard is supported. Choosing NFA or DFA engine you could get access to the hinting. You could omit all that is said on regular expression topic there, but be sure to read [[#Hinting|hinting section]] below to understand various settings you could alter to configure you question hniting behaviour.


===Understanding expressions===
===Understanding expressions===
The regular expressions - as any '''expressions''' - are just a bunch of '''operators''' with their '''operands'''. Don't worry - you all learned to master arithmetic expressions from chilhood and regular ones are just as easy - if you look on them from the right angle. Learn (or recall) only 4 new words - and you are a master of regexes with very wide possibilities. Don't find that angle, and regular expressions could forever remain vast menace where only a few steps are sure. Let's go?
The regular expressions - as any '''expressions''' - are just a bunch of '''operators''' with their '''operands'''. Don't worry - you all learned to master arithmetic expressions from chilhood and regular ones are just as easy - if you look on them from the right angle. Learn (or recall) only 4 new words - and you are a master of regexes with very wide possibilities. Let's go?


Look at a simple math expression: '''x+y*2'''. There are two '''operators''' there: '+' and '*'. The '''operands''' of '*' is 'y' and '2'. The '''operands''' of '+' is 'x' and result of 'y*2'. Easy?
Look at a simple math expression: '''x+y*2'''. There are two '''operators''': '+' and '*'. The '''operands''' of '*' are 'y' and '2'. The '''operands''' of '+' are 'x' and the result of 'y*2'. Easy?


Thinking about that expression deeper we could found, that there is a definite '''order of evaluation''' there, governed by operator's '''precedence'''. '*' has a precedence over '+', so it is evaluated first. You could change order of evaluation using brackets: '''(x+y)*2''' will evaluate '+' first and multiply it's results on the 2. Still easy?
Thinking about that expression deeper we can find that there is a definite '''order of evaluation''', governed by operator's '''precedence'''. The '*' has a precedence over '+', so it is evaluated first. You can change the evaluation order by using parentheses: '''(x+y)*2''' will evaluate '+' first and multiply the result by 2. Still easy?


One more thing we should learn about operators: their '''arity''', which is just the number of operands required. In example above '+' and '*' are '''binary''' operators - they both take two operands. Most arithmetic operators are binary, but minus has '''unary''' (single operand) form, like in this equation: '''y=-x'''. Note that unary and binary minuses work differently.  
One more thing we should learn about operators is their '''arity''' - this is just the number of operands required. In the example above '+' and '*' are '''binary''' operators - they both take two operands. Most of arithmetic operators are binary, but the minus has the '''unary''' (single operand) form, like in this equation: '''y=-x'''. Note that the unary and binary minuses work differently.  


Now any epxression are just lego game, where you set a sequence of '''operators''' with correct number of '''operands''' for each ('''arity'''), taking heed of their order of evaluation using their '''precedence''' and brackets. Arithmetics expressions are for evaluating numbers. Regular expressions are for finding pattern matches in the strings, so they naturally use another operands and operators - but they are governed by the same rules of precedence and arity.
Now any epxression are just a lego game, where you set a sequence of '''operators''' with correct number of '''operands''' for each (arity), taking heed of their evaluation order by using their '''precedence''' and parentheses. Arithmetic expressions are for evaluating numbers. Regular expressions are for finding patterns in strings, so they naturally use another operands and operators - but they are governed by the same rules of precedence and arity.


===Regular expressions===
===Regular expressions===
The goal of a regular expressions is a pattern matching in the strings. So their '''operands''' are characters or characters set. '''A''' is a regular expressions too and it matches with single character 'A'. There are several way to define a character set, described below. Special characters, used to write operators,must be '''escaped''' when used as operands - preceded by backslash. Math expressions never had escaping problems since their operands (numbers, variables) are constructed from different characters than operators (+,- etc), but setting pattern for matching you should be able to use any character as operand.
Regular expressions is a powerful mechanism for searching in strings using patterns. So their '''operands''' are characters or character sets. '''A''' is a regular expressions that matches a single character 'A'. The ways to define character sets are described below. The special characters that define operators should be '''escaped''' when used as operands - preceded by a backslash. These special characters are:
 
'''\ ^ $ . [ ] | ( ) ? * + { }'''


Still, pattern that match only with one character isn't very useful. So there comes '''operators''' that allows us to define expression matching with string of a several characters.
Mathematical expressions never have escaping problems since their operands (numbers, variables) are constructed from different characters than operators (+,- etc), but when constructing a pattern for matching you should be able to use ''any'' character as an operand.


====Operands====
====Operands====
You could use those operands in you expressions:
Here's an incomplete list of operands that define character sets.
# ''simple characters'' match with themselves
# '''Simple characters''' (with no special meaning) match themselves.
# ''escaped special characters'' if you need to use character with special meaning (like |, * or bracket) just as usual character to match you should preceed it by backslash: '''a\*''' matches with a* (while '''a*''' matches with a zero or more times), backslash is a special character too and should be escaped '''\\''' matches with \
# '''Escaped special characters''' match corresponding special characters. Escaping means preceding special characters by the backslash "\". For example, the regex "\|" matches the string "|", the regex "a\*b\[" matches the string "a*b[". Backslash is a special character too and should be escaped: "\\" matches "\". '''NOTE!''' when you are ''unsure'' whether to escape some character, it is safe to place "\" before any character except letters and digits. ''Do not'' escape letters and digits unless you know what you are doing - they get special meaning when escaped and lose it when not.
#* when '''unsure''' whether to escape some character, it is safe to place \ before any character except letters, digits and underscore, so you don't need to worry whether particular symbol is special or no
# '''Character sets''' match any character defined in them. Character sets are defined by brackets. The particular ways to define a character set are:
#* do not escape letters unless you know what you are doing, since they get special meaning when escaped and lose it when not
#* "[ab,!]" matches "a", "b", "," and "!";
# ''character classes'' you could specify a number of possible characters in one place in square brackets:
#* "[a-szC-F0-9]" contains ranges (defined by a ''hyphen between 2 characters'') "a-z", "C-F" and "0-9" mixed with the single character "z", it matches any character from "a" to "s", "z", from "C to "F" and from "0" to "9";
#* '''[ab,!]''' matches with a or b or , or !
#* "[^a-z-]" starts with the "^" that means a '''negative character set''': it matches any character except from "a" to "z" and "-" (note that the second hyphen is not placed between 2 characters so defines itself);
#* ''ranges'': '''[a-szC-F0-9]''' you could specify ranges for letters and digits in character classes, mixing them with single characters
#* "[\-\]\\]" contains ''escaping inside a character set'':  it matches "-", "]" and "\", other characters loose their special meaning inside a character set and can be be not escaped, but if you want to include "^" in a character set it shouldn't be first there;
#* ''negative character classes'' starts with ^ '''[^ab]''' means any characters except a and b
# '''Dot meta-character''' (".") matches ''any'' possible character (except newline, but students can't enter it anywhere), escape it "\." if you need to match a single dot.
#* ''escaping inside character classes'': '''[\-\]\\]''' match with - or ] or \, other characters lost their special meaning inside character class and shoudn't be escaped, but if you want to include ^ in the character class it should not be first
# '''Escape sequences''' for common character sets:
# ''dot meta-character'' '''.''' match with any possible character (except newline, but student coudn't enter it anywhere), you should escape dot '''\.''' if you need to match single dot.
#* "\w" for any word character (letter, underscore or digit) and "\W" for any non-word character;
# ''escape sequences'' for common character classes:
#* "\s" for any space character and "\S" for any non-space character;
#* '''\w''' for any word character (letter, underscore or digit) and '''\W''' for non-word character
#* "\d" for any digit and "\D" for any non-digit.
#* '''\s''' for any space character and '''\S''' for any non-space character
# '''Simple assertions''' - they are not characters, but conditions to test, they ''don't consume'' characters while matching, unlike other operands:
#* '''\d''' for any digit and '''\D''' for any non-digit
#* "^" matches in the start of the string, fails otherwise;
# ''simple assertions'' - these are not characters, but conditions to test, they don't "eat" characters while matching, unlike other operands:
#* "$" matches in the end of the string, fails otherwise;
#* '''^''' - match in the start of response string, fails otherwise
#* "\b" matches on a word boundary, i.e. either between word (\w) and non-word (\W) characters, or in the start (end) of the string if it starts (ends) with a word character;
#* '''$''' - match in the end of response string, fails otherwise
#* "\B" matches not on a word boundary, negative to "\b".
#* '''\b''' - match on the word boundary, i.e. between word (\w) and non-word (\W) characters, and in the start/end of the response if it starts (ends) with word character
Still, a pattern that matches only one character isn't very useful. So here comes the '''operators''' that allow us to define an expression which matches strings of several characters.
 


====Operators====
====Operators====
Most common regular expression operators used (could anyone help expand descriptions and examples please?):
Here's a list of the common regex operators:
# ''concatenation'' - so simple '''binary''' operator that is doesn't have any character at all. Still it is an operator and has it's precedence, which is important if you want to understand where to use brackets. Concatenation allows you to write several operands in sequence:
# '''Concatenation''' - so simple ''binary'' operator that doesn't require any special character to be defined. It is still an operator and has it's precedence, which is important if you want to understand where to use brackets. Concatenation allows you to write several operands in sequence:
#* '''ab''' matches with ab
#* "ab" matches "ab";
#* '''a[0-9]''' matches with a followed by any digit
#* "a[0-9]" matches "a" followed by any digit, for example, "a5"
# ''alternative'' - '''binary''' operator that lets you define a set of alternatives:
# '''Alternative''' - a ''binary'' operator that lets you define a set of alternatives:
#* '''a|b''' mean a or b
#* "a|b" matches "a" or "b";
#* '''ab|cd|de''' mean ab or cd or de
#* "ab|cd|de" matches "ab" or "cd" or "de";
#* empty alternative: '''ab|cd|''' mean ab or cd or emptiness (useful as a part more complex expressions)
#* "ab|cd|" matches "ab" or "cd" or ''emptiness'' (useful as a part in more complex expressions);
#* '''(aa|bb)c''' mean aac or bbc - use brackets to outline alternative set
#* "(aa|bb)c" matches "aac" or "bbc" - using parentheses to outline alternative set;
#* '''(aa|bb|)c''' mean aac or bbc or c - typical use of emptiness
#* "(aa|bb|)c" matches "aac" or "bbc" or "c" - typical usage of the emptiness;
# ''quantifiers'' - '''unary''' operator that lets you define repetition of a character (or regular expression) used as it's operands:
# '''Quantifiers''' - an ''unary'' operator that lets you define repetition of something used as its operand:
#* '''x*''' mean x zero or more times
#* "x*" matches "x" zero or more times;
#* '''x+''' mean x one or more times
#* "x+" matches "x" one or more times;
#* '''x?''' mean x zero or one times
#* "x?" matches "x" zero or one times;
#* '''x{2,4}''' mean x from 2 to 4 times
#* "x{2,4}" matches "x" from 2 to 4 times;
#* '''x{2,}''' mean x two or more times
#* "x{2,}" matches "x" two or more times;
#* '''x{,2}''' mean x from 0 to 2 times
#* "x{,2}" matches "x" from 0 to 2 times;
#* '''x{2}''' mean x exactly 2 times
#* "x{2}" matches "x" exactly 2 times;
#* '''(ab)*''' mean ab zero or more times, i.e. if you want to use quantifier on more than one character, you should use brackets
#* "(ab)*" matches "ab" zero or more times, i.e. if you want to use a quantifier on more than one character, you should use parentheses;
#* '''(a|b){2}''' mean aa or ab or ba or bb, i.e. it is repeated alternative, not selection one alternative and repeating it
#* "(a|b){2}" matches "aa" or "ab" or "ba" or "bb", i.e. it is a repeated alternative, not a repetition of "a" or "b".


====Precedence and order of evaluation====
====Precedence and order of evaluation====
'''Quantifier''' has precedence over '''concatenation''' and '''concatenation''' has precedence over '''alternative'''. Let's look what it means:
A '''Quantifier''' has precedence '''over concatenation''' and '''concatenation''' has precedence '''over alternative'''. Let's look what it means:
# ''quantifier over concatenation'' means quantifiers are executed first and without brackets would repeat only single character:
# ''quantifiers over concatenation'' means that quantifiers are executed first and will repeat only a single character if used without parentheses:
#* '''ab*''' matches with a followed with zero or more b's
#* "ab*" matches "a" followed by zero or more "b";
#* changing this using brackets allows us define a string repetition: '''(ab)*''' matches with ab zero or more times
#* "(ab)*" matches "ab" zero or more times - changing the previous regex by using parentheses allows us define a string repetition; 
# ''concatenation over alternative'' means you could define multi-character alternatives without brackets (for single character alternatives use character classes, not alternative operators) but should use brackets when you need to add something to the alternative set:
# ''concatenation over alternative'' means that you can define multi-character alternatives without parentheses (for single character alternatives it's better to use character classes, not the alternative operator):
#* '''ab|cd|de''' matches with ab or cd or de
#* "ab|cd|de" matches "ab" or "cd" or "de";
#* '''(aa|bb)c''' matches with aac or bbc - use brackets to outline alternative set
#* "(aa|bb|)c" matches "aac" or "bbc" or "c" - typical use of an empty alternative;
#* '''(aa|bb|)c''' matches with aac or bbc or c - typical use of an empty alternative
# ''quantifier over alternative'' means that you should use parentheses to repeat an alternative set:
# ''quantifier over alternative'' means you should use brackets to repeat an alternative set (not the last character in it):
#* "ab|cd*" matches "ab" or "c" followed by zero or more "d" like "cdddddd";
#* '''ab|cd*''' matches with ab or c followed with zero or more d's
#* "(ab|cd)*" matches "ab" or "cd", repeated zero or more time in any order, like "ababcdabcdcd". Note that quantifiers repeat the whole alternative, not a definite selection from it, i.e.:
#* '''(ab|cd)*''' matches with ab or cd, repeated zero or more time in any order, like ababcdabcdcd etc
#* "(a|b){2}" matches "aa" or "ab" or "ba" or "bb", not just "aa" or "bb";
#* note that quantifiers repeats alternative, not the definite selection from it, i.e.:
#* "a{2}|b{2}" matches "aa" or "bb" only.
#*# '''(a|b){2}''' matches with aa or ab or ba or bb, not just aa or bb
#*# use '''a{2}|b{2}''' to match aa or bb only


====Assertions====
====Assertions====
''Assertions'' are assertions about some part of the string that doesn't actually goes into matching text, but affects whether matching occur or not.
Assertions about some part of the string don't actually go into matching text, but affect the matching occurrence:
* ''positive lookahead assert'' '''a+(?=b)''' matches with any number of a ending with b without including b in the match
* '''positive lookahead assertion''' "a+(?=b)" matches any number of "a" ending with "b" without including "b" in the match;
* ''negative lookahead assert'' '''a+(?!b)''' matches with any number of a that is not followed by b
* '''negative lookahead assertion''' "a+(?!b)" matches any number of "a" that is not followed by "b";
* ''positive lookbehind assert'' '''(?<=b)a+''' matches with any number of a preceeded by b
* '''positive lookbehind assertion''' "(?<=b)a+" matches any number of "a" preceeded by "b";
* ''negative lookbehind assert'' '''(?<!b)a+''' matches with any number of a that is not preceeded by b
* '''negative lookbehind assertion''' "(?<!b)a+" matches any number of "a" that is not preceeded by "b".


====Matching====
====Matching====
'''Matching''' means finding a part of the student answer (or a whole answer) that suited the regular expression. This part called a '''match'''.
Matching means finding a part of the student's answer that suits the regular expression. This part called '''match'''. You should enter regular expressions as '''answers''' to questions without modifiers or enclosing characters (modifiers will be added for you by the question - "u" is added always and "i" is added in case-insensitive mode). You should also enter one correct response (that matches at least one 100% grade regex) to be shown to the student as '''correct answer'''. The question will use all regular expressions in order to find first full match (full for expression, but not necessary all response - see [[#Anchoring|anchoring]]) and give a grade from it. If there is no full match and engine supports partial matching (see [[#Hinting|hinting]]) then a partial match that is the shortest to complete will be choosen (for displaying a hint, zero grade is given) - or the longest one, if engine can't tell which one will be the shortest to complete.
 
You should enter regular expressions as '''answers''' to the question without modifiers or enclosing characters (modifiers would be added for you by question - '''u''' added always and '''i''' in case-insensitive mode). You should also enter one correct response (that matches at least one 100% grade regular expression) to be shown to the student as '''correct answer'''. The question would get use all regular expressions in order to find first full match (full for expression, but not necessary all response - see [[#Anchoring|anchoring]]) and give a grade from it. If there is no full match and engine supports partial matching (see [[#Hinting|hinting]]) than partial match that is shortest to complete would be choosen (for displaying a hint, zero grade is given) - or the longest one, if engine coudn't tell which one would be shortest to complete.


====Anchoring====
====Anchoring====
Anchoring sets restrictions on the matching process using simple assertions:
Anchoring is used to set restrictions on the matching process by using simple assertions:
* if a regular expression starts with '''^''' the match should start at the start of the student's response;
* if a regular expression starts with the '''^''' the match should start at the start of the student's response;
* if a regular exhression ends with '''$''' the match should ends at the end of the student's reponse;
* if a regular expression ends with the '''$''' the match should end at the end of the student's reponse;
* otherwise regular expression match could be contained anywhere inside student response.
* otherwise a regex match can be found anywhere inside a student's response.


Note that simple assertions are concatenated with regex and concatenation has precedence over alternative, which make it's use slightly tricky.
Note that simple assertions are concatenated with regex and concatenation has precedence over alternative, this makes it's usage slightly tricky:
#* '''^ab|cd$''' would match ''ab'' from the start of string or ''cd'' at the end of it
* "^ab|cd$" will match "ab" from the start of the string or "cd" at the end of it;
#* '''^(ab|cd)$''' use brackets to match exactly with ''ab'' or ''cd''
* "^(ab|cd)$" using brackets to match exactly with "ab" or "cd";
#* '''^ab$|^cd$''' is another way to get exact matching of regex with top-level alternatives
* "^ab$|^cd$" is another way to get exact match (all top-level alternatives are anchored).


If you set '''exact matching''' options to yes (default setting), the question would add ^ and $ in each regular expression for you (with correct brackets to not interfere with you subpatterns). However, you may prefer to use some non-anchored regexes to catch common errors and give feedback while using manually anchored expression for grading.
If you set the '''exact matching''' options to "yes" (which is the default value), the question will add ^ and $ in each regular expression for you (it will not affect subpattern usage). However, you may prefer to use some non-anchored regexes to catch common errors and give feedback and use manually anchored expressions for grading.


====Local case-sensitivity modifiers====
====Local case-sensitivity modifiers====
Starting from Preg 2.1 you could set case-(in)sensitivity for parts of you regular expression using standard syntax of Perl-compatible regular expressions:
Starting from Preg 2.1 you can set case-(in)sensitivity for parts of your regular expressions by using the standard syntax of Perl-compatible regular expressions:
#* '''(?i)''' would turn case-sensitivity off
* "(?i)" will turn case-sensitivity off;
#* '''(?-i)''' would turn case-sensitivity on
* "(?-i)" will turn case-sensitivity on.
This affects general case-sensitivity, which is choosen on the question level. So you can make some answers case-sensitive and some not, or even do this for the parts of answers. For example you can set question as "use case" and have a 50% answer starting with "(?i)" to grade lesser when the case doesn't match, but everything else is correct.


This affects general case-sensitivity, which is choosen on the question level. So you could make some answer case-sensitive while other as not, or even do this for the parts of answers. For example you could set question as "use case" and have 50% answer regular expression starting with ''(?i)'' to lessen grade when case don't match, but answer otherwise correct.
When placed in parentheses, local modifiers work up to the closest ")". When placed on the top level (not inside parentheses) they work up to the end of the expression, i.e. with case sensitivity on for the question:
* "abc(de(?i)'''gh''')xyz" will have the bold part case-insensitive;
* "abc(de)(?i)'''ghxyz'''" will have the bold part case-insensitive.


When done in the round brackets, these local modifiers work up to the closest ''')''' (closing round bracket). When done on the main level (not inside brackets) they work up to the end of expression. I.e. with case sensitivity on for the question:
===Usage of the Preg question type===
* abc(de(?i)'''gh''')xyz would have bold part case-insensitive
Basically, this question type is an extended version of the Shortanswer.
* abc(de)(?i)'''ghxyz''' would have bold part case-insensitive


===Hinting===
====Notations====
Some matching engines could support hinting (not easy thing to do on the PHP at all) in adaptive mode.
Starting from Preg 2.1, the "notations" feature allows you to choose a notation in which regexes for answers will be written. The '''Regular expression''' which means Perl-compatible regex dialect is the default one. The exciting part of notations is that you can use the Preg question type just as improved shortanswer, having access to the hinting without any need to understand regular expressions! Just choose the '''Moodle shortanswer''' notation and you can just copy answers from you shortanswer questions. The '*' wildcard is supported. By choosing NFA or DFA engine you can get access to the hinting. You can skip all that is said on regular expression topic there, but be sure to read the [[#Hinting|hinting]] section to understand various settings you can alter to configure you question hinting behaviour.


Hinting starts with '''partial matching'''. When a student enters a partially correct answer, partial matching could find that response starts matching and on some character broke it. Consider you enter expression:
====Hinting====
Some matching engines support hinting (not an easy thing to do using PHP at all) in the adaptive mode.
 
Hinting starts with '''partial matching'''. When a student enters a partially correct answer, partial matching finds that response starts matching and on some character breaks it. Say you entered an expression:
   '''are blue, white(,| and) red'''
   '''are blue, white(,| and) red'''
and student answered
and a student answered:
   they are blue, vhite and red
   they are blue, vhite and red
Partial matching will find that partial match is
Partial matching will find that the partial match is
   are blue,  
   are blue,  
Remember, the regular expresion in unanchored so the match shouldn't start with the start of the student response. While using just partial matching the student will be shown correct and incorrect parts:
Remember, the regular expresion in unanchored so the match shouldn't start with the start of the student's response. While using just partial matching the student will be shown correct and incorrect parts:
   <span style="text-decoration:line-through; color:#FF0000;">they </span><span style="color:#0000FF;">are blue, </span><span style="text-decoration:line-through; color:#FF0000;">vhite and red</span>
   <span style="text-decoration:line-through; color:#FF0000;">they </span><span style="color:#0000FF;">are blue, </span><span style="text-decoration:line-through; color:#FF0000;">vhite and red</span>
When hinting is available, student will have '''hint''' button by pressing which he receive a hint with one next correct character, highlighted by background coloring:
When hinting is available, student will have the '''hint''' button by pressing which he receives a hint with one next correct character, highlighted by background coloring:
   <span style="text-decoration:line-through; color:#FF0000;">they </span><span style="color:#0000FF;">are blue, </span><span style="background-color:#00FF00">w</span><span style="text-decoration:line-through; color:#FF0000;">vhite and red</span>
   <span style="text-decoration:line-through; color:#FF0000;">they </span><span style="color:#0000FF;">are blue, </span><span style="background-color:#00FF00">w</span><span style="text-decoration:line-through; color:#FF0000;">vhite and red</span>
You should typically set hint '''penalty''' more than usual question '''penalty''', because they are applied separately: usual penalty for an attempt without hinting, while hint penalty for an attempt with hinting.
You should typically set hint '''penalty''' more than usual question '''penalty''', because they are applied separately: usual penalty for an attempt without hinting, while hint penalty for an attempt with hinting.
Preg question doesn't add hint character to the student's response (like regex question do it), showing it separately instead for a number of reasons:
Preg question type doesn't add hinted characters to the student's response (unlike the regex question type), showing it separately instead for a number of reasons:
# it is student's responsibility whether he want to add hinted character to the his response (and some more possibly);
# it is student's responsibility whether he wants to add hinted character to the his response (and some more possibly);
# it slightly facilitates thinking about hint, since when the response is modified it is too easy to repeatedly press '''hint''', which is not a desirable behavour usually.
# it slightly facilitates thinking about hint, since when the response is modified it is too easy to repeatedly press '''hint''', which is not a desirable behavour usually.
When possible (if question engine supports it), hinting choosing a character that leads to shortest path to complete a match. Consider this response to the previous regular expression:
When possible (if question engine supports it), hinting chooses a character that leads to the shortest path to complete the match. Consider this response to the previous regular expression:
   <span style="color:#0000FF;">are blue, white</span><span style="text-decoration:line-through; color:#FF0000;">; red</span>
   <span style="color:#0000FF;">are blue, white</span><span style="text-decoration:line-through; color:#FF0000;">; red</span>
There are two possible hint characters: ',' or ' '. The question will choose ',' since it leads to the shortest path to complete a match, while ' ' leads to a path 3 characters longer.
There are two possible hint characters: ',' or ' '. The question will choose ',' since it leads to the shortest path to complete the match, while ' ' leads to the path 3 characters longer.


It is possible that not all regular expressions will give 100% grade. Consider you add an expression for the students with bad memory:
It is possible that not all regular expressions will give 100% grade. Consider you added an expression for the students with bad memory:
   '''are white(,| and) red'''
   '''are white(,| and) red'''
with 60% grade and feedback about forgetting ''blue''. You may not want hinting to lead student to the response
with 60% grade and feedback about forgetting ''blue''. You may not want hinting to lead student to the response
Line 151: Line 148:
if he entered
if he entered
   are white, oh I forgot other colors.
   are white, oh I forgot other colors.
'''Hint grade border''' controls this. Only regular expressions with grade greater or equal than hint grade border would be used for partial matching and hinting. If you set hint grade border to 1, only 100% grade regular expression would be used to hinting, if you set it to 0,5 regular expressions with 50%-100% grades would be used and 0%-49% would not. Regular expressions not used for hinting works only when they have a full match in the student response.
'''Hint grade border''' controls this. Only regular expressions with the grade greater or equal than the hint grade border will be used for partial matching and hinting. If you set hint grade border to 1, only 100% grade regular expression will be used for hinting, if you set it to 0,5 regular expressions with 50% then 100% grades will be used and 0%-49% would not. Regular expressions not used for hinting work only when they have a full match in the student response.


===Subpattern capturing and feedback===
====Subpattern capturing and feedback====
Any pair of round brackets in the regular expressions are considered a '''subpattern''' and when doing matching engine (supporting subpatterns) remember ('''capture''') not only whole match, but it's parts corresponding to all subpatterns. Subpatterns can be nested. If subpattern is repeated (i.e. have quantifier), than only last match of all repeats will be captured. If you want to change order of evaluation without defining a subpattern to capture (which will speed up processing), you should use (?:  ) instead of just (  ). Asserts don't create subpatterns.
Any pair of parentheses in a regex are considered as a '''subpattern''' and when matching the engine remembers ('''captures''') not only the whole match, but its parts corresponding to all subpatterns. Subpatterns can be nested. If a subpattern is repeated (i.e. have quantifier), than only last match of all repeats will be captured. If you want to change order of evaluation without defining a subpattern to capture (which will speed up processing), you should use (?:  ) instead of just (  ). Lookaround assertions don't create subpatterns.


Subpatterns are counted from left to right by opening brackets. Precisely '''0''' is the whole match, '''1''' is first subpattern etc. You could insert them in the ''answer's feedback'' using simple placeholders: '''{$0}''' is replaced by the whole match, '''{$1}''' by first subpattern value etc. That can improve the quality of you feedback. Placeholders won't work on the ''general feedback'' because different answers could have different number of subpatterns.
Subpatterns are counted from left to right by opening parentheses. Precisely '''0''' is the whole regex, '''1''' is first subpattern etc. You can insert them in the ''answer's feedback'' using simple placeholders: '''{$0}''' is replaced by the whole match, '''{$1}''' by the first subpattern value etc. That can improve the quality of you feedbacks. Placeholders won't work on the ''general feedback'' because different answers can have different number of subpatterns.


'''PHP preg engine''' support full subpattern capturing. '''DFA''' engine coudn't do it, so you could use only {$0} placeholder working with DFA engine.
'''PHP preg engine''' and '''NFA''' support full subpattern capturing. '''DFA''' engine can't do it by its nature, so you can use only {$0} placeholder when using the DFA engine.


Let's look at regex defining an decimal number with optional integral part:
Let's look at a regex defining a decimal number with optional integral part:
  [+\-]?([0-9]+)?\.([0-9]+)
  [+\-]?([0-9]+)?\.([0-9]+)
It has two subpatterns: first capturing integral part, second - fractional part of the number.
It has two subpatterns: first capturing integral part, second - fractional part of the number.
You writed feedback:
If you wrote the feedback:
  The number is: {$0} Integral part is {$1} and fractional part is {$2}
  The number is: {$0} Integral part is {$1} and fractional part is {$2}
Then entering
Then a student entered
  123.34
  123.34
the student will see
He will see
  The number is: 123.34 Integral part is 123 and fractional part is 34
  The number is: 123.34 Integral part is 123 and fractional part is 34
If no integral part is given, {$1} will be replaced by empty string. There is no way (for now) to erase "Integral part is" under that circumstances - the placeholder syntax may become complex and prone to errors.
If no integral part is given, {$1} will be replaced by empty string. There is no way (for now) to erase "Integral part is" under that circumstances - the placeholder syntax may become complex and prone to errors.


===Error reporting===
====Error reporting====
Native PHP preg extension functions only report if there error in regular expression or not, so '''PHP preg extension''' engine couldn't tell you much about what is error .
Native PHP preg extension functions only report if there is an error in regular expression or not, so '''PHP preg extension''' engine can't tell you much about the error.
 
'''NFA''' and '''DFA''' engines use a custom '''regular expression parser''', so they support the advanced error reporting. The are several classes of potential errors:
* more than two top-level alternatives in a conditional subpattern "(?(?=f)first|second|third)";
* unopened closing parenthesis "abc)";
* unclosed opening parenthesis of any sort (subpatterns, assertions, etc) "(?:qwerty";
* empty parentheses of any sort "(?=)";
* quantifier without an operand, i.e. at the start of (sub)expression with nothing to repeat "+" or "a(+)";
* unclosed brackets of character classes "[a-fA-F\d";
* setting and unsetting the same modifier at the same time "(?i-i)";
* unknown unicode properties "\p{Squirrel}";
* unknown posix classes "[[:hamster:]]";
* unknown (*...) sequence "(*QWERTY)";
* incorrect ranges for quantifiers "a{5,4}" or character sets "[z-a]".


'''DFA''' engine use custom '''regular expression parser''', so it supports advanced error reporting. The are several class of potential errors reported:
PCRE (and preg functions) treat most of them as '''non-errors''', making many characters meaning context-dependent. For example, a quantifier {2,4} placed at the start of a regular expression loses the meaning as a quantifier and is treated as a five-characters sequence instead (that matches with the string "{2,4}"). However such syntax is very prone to errors and makes writing regular expression harder.
* unclosed square brackets of character class;
* unclosed opening parenthesis of any sort (different forms of subpatterns and assertions);
* unopened closing parenthesis;
* empty parenthesis of any sort (different forms of subpatterns and assertions);
* quantifiers without operand, i.e. at the start of (sub)expression with nothing to repeat;
* three or more top-level alternatives in the conditional subpattern.
PCRE (and preg functions) treat most of them as '''non-errors''', making many characters meaning context-dependent. For example quantifier {2,4} placed at the start of regular expression lose it's meaning as quantifier and is treated as five-characters sequence instead (that matches with {2,4}). However such syntax is very prone to errors and make writing regular expression harder.


For now I'm vote for reporting errors instead of treating them as literals, even if it means incompatibility with PCRE/preg. If you are stand for or against this decision please write you positions and reasons on the page comments please. It may be best to have two modes, but this literally means two parsers and this is out of current scope of development. There are more pressing issues ahead.
For now I vote for reporting errors instead of treating them as literals, even if it means incompatibility with PCRE. If you stand for or against this decision then please write you positions and reasons to the comments. It may be best to have two modes, but this literally means two parsers and this is out of current scope of development. There are more pressing issues ahead.


===Looking for missing things===
====Looking for missing things====
Joseph Rezeau REGEXP question type has a '''missing words''' feature, allowing to define an answer that would work when something is absent in the answer (and give appropriate feedback to the student).  
Joseph Rezeau's REGEXP question type has a '''missing words''' feature, allowing to define an answer that will work when something is absent in the answer (and give an appropriate feedback to the student).  


Similar effect could be achieved with '''negative assertions''' combined with anchoring the matching start. Regular expression to look for the missing word '''necessary''' would be
Similar effect can be achieved with '''negative assertions''' combined with anchoring the matching start. The regular expression to look for the missing word '''necessary''' would be
   ^(?!.*\bnecessary\b.*)
   ^(?!.*\bnecessary\b.*)
where
where
* '''(?!.*\bnecessary\b.*)''' is a '''negative lookahead assertion''', that allows matching only if there are no word '''necessary''' ahead of some point in the string;
* '''(?!.*\bnecessary\b.*)''' is a '''negative lookahead assertion''', that allows matching only if there is no word '''necessary''' ahead of some point in the string;
* '''^''' is an assertion too, that anchoring the match to the start of response (otherwise there would be places in response after the word "necessary", where matching is possible even if the word is present).
* '''^''' is an assertion too, that anchores the match to the start of the response (otherwise there would be places in response after the word "necessary", where matching is possible even if the word is present).


In case the description is difficult to you, just surround regexp to be missing with '''^(?!''' and ''')'''. Don't try '--' syntax that is specific to Jospeh Rezeau REGEX question type!
In case if the description is difficult to you, just surround regexp to be missing with '''^(?!''' and ''')'''. Don't try '--' syntax, that is specific to Jospeh Rezeau's REGEX question type!


Sadly, no engine except PHP_preg_matcher is supportting complex assertions (i.e. '''(?!''' part). We are working on it, but it stil some time away, requiring further complex work.
Sadly, no engine except PHP_preg_matcher is supportting complex assertions (i.e. '''(?!''' part). We are working on it, but it requires some complex work.


===Matching engines===
====Matching engines====
Matching engines means different program code that do matching (either by different methods or written by different people). There are no single 'best' matching engine - it depends on the features you want to use and regular expressions engine should handle. They have a different degree of stability and offer different features to use.
A matching engine means different program code that performs matching. There is no 'best' matching engine - it depends on the features you want to use and the regular expressions engine it should handle. They have a different degree of stability and offer different features to use.
====PHP preg extension====
=====PHP preg extension=====
It is based on native PHP preg functions (which is in turn based on the PCRE library). It is supporting 100% perl-compatible regular expression features, been very stable and thoroughly tested. Sadly, PHP functions doesn't support partial matching (while PCRE could), so (unless we storm PHP developers to add support for partial matching) there is '''no hinting''' there. However it will support subpattern capturing. Choose it when you need complex regexp features other engines don't support, subpattern capturing or better performace.
It is based on the native PHP preg functions (which is in turn based on the PCRE library). It supports 100% perl-compatible regular expression features, it is very stable and thoroughly tested. Bot PHP functions doesn't support partial matching, so (unless we storm PHP developers to add support for partial matching) there is '''no hinting''' there. However it supports subpattern capturing. Choose it when you need complex regexp features that other engines don't support.


====Deterministic finite state automata (DFA)====
=====Deterministic finite state automata (DFA)=====
This is a custom PHP code using DFA matching algorithm. It is heavily unit-tested, but considered beta-quality for now. Not all PHP operands and operators are supported, and for some (more exotic) ones support could still differs from standard (especially for non-latin characters). On the bright side it is support '''hinting'''.
This is a custom PHP code that uses DFA matching algorithm. It is heavily unit-tested, but considered beta-quality for now. Not all PHP operands and operators are supported, and for some (more exotic) ones support can still differ from the standard. On the bright side it is support '''hinting'''.


Currently supported operands (there would be more):
Currently supported operands:
* single characters
* single characters
* escaped special characters
* escaped special characters
Line 213: Line 216:
* octal and hexadecimal character codes preceeded by \o and \x
* octal and hexadecimal character codes preceeded by \o and \x
* meta-character . (any character)
* meta-character . (any character)
* unicode properties


Currently supported operators (there would be more):
Currently supported operators:
* concatenation
* concatenation
* alternative |
* alternative |
Line 225: Line 229:
* backreferences
* backreferences


====Non-deterministing finite state automata(NFA)====
=====Non-deterministing finite state automata(NFA)=====
NFA engine, introduced in 2.1 release, is a custom matcher that basically could do anything DFA matcher could, with addition of subpattern capturing and backreferences.
NFA engine was introduced in the 2.1 release. It is a custom matcher that can do everything that DFA matcher can, but also supports:
* subpattern capturing (including named subpatterns, duplicate subpatterns numbers)
* backreference capturing (including named backreferences)


Now you don't have to choose between hiting and using captured subpatterns in you questions: NFA could do them both!
So, you don't have to choose between hiting and subpattern capturing in you questions - NFA can do them both! Also, the NFA matcher is more stable than the DFA one and it is probably the best choise if you want to use partial matching with hinting, but without lookaround assertions.


===The ways to give back===
===The ways to give back===
I am a high school teacher, researcher and programmer who must do much on his main paid job and have not much free time to spend on developing this question type. If you could help me in some ways, I may be able to spend more time and effort doing this thought. Some examples:
I am a high school teacher, researcher and programmer who must do much on his main paid job and have not free much time to spend on developing this question type. If you could help me in some ways, I may be able to spend more time and effort doing this thought. Some examples:
* publishing a thesis or paper describing you use of Preg question I could give reference for would improve rating of preg project there and my rating as researcher/developers, so please publish and let me know the reference if you feel grateful for the software;
* publishing a thesis or paper describing your usage of the Preg question I could give reference for would improve rating of the project there and my rating as a researcher/developer, so please publish and let me know the reference if you feel grateful for this software;
* if you would take some more work and organise publishing a paper (or at least thesis) with me as co-author, that would '''help even more''' - please inform me immediately if you consider this;
* if you would take some more work and organise publishing a paper (or at least thesis) with me as co-author, that would '''help even more''' - please inform me immediately if you consider this;
* if publishing is hard, you could just write me what you organisation is and how you use preg - that'll help a little and I would be able to better determine what should be done next;
* if publishing is hard, you could just write me what your organisation is and how you use preg - that'll help and I would be able to better determine what should be done next;
* join the testing efforts, either by performing manual test or by writing unit tests (it's easy to do even if you aren't great programmer, you just need to know regular expressions - contact me and I'll tell you how.
* join the testing efforts, either by performing manual test or by writing unit tests (it's easy to do even if you aren't a great programmer, you just need to know regular expressions - contact me and I'll tell you how).




===Development plans===
===Development plans===
There is no definite shedule or order of development for those features - it depends on the available time and developers. Many features require complex code to achieve results. If you want to help us with specific feature, please contact question type maintainer (Oleg Sychev) using http://moodle.org messaging.
There is no definite shedule or order of the development for those features - it depends on the available time and developers. Many features require complex code to achieve the results. If you want to help us with a specific feature, please contact the question type maintainer (Oleg Sychev) using http://moodle.org messaging.
* Improved simple assertions support
* Improve simple assertions support
* Support for complex assertions
* Support for complex assertions
* Hinting not one character, but completion of the whole world
* Hinting not one character, but completion of the whole world
* Add automatic generation of shortest possible correct answer in user-readable form
* Add automatic generation of shortest possible correct answer in user-readable form
* Add a set of authoring tools to make writing regular expressions easier
* Add a set of authoring tools to make writing regular expressions easier
* Develop backtracking matching engine
* Develop the backtracking matching engine
* Develop more help and examples for the people that don't know much about regular expressions.
* Develop more help and examples for the people that don't know much about regular expressions.
* Improve Unicode support of custom matching engines


[[Category:Contributed code]]
[[Category:Contributed code]]

Revision as of 18:21, 24 July 2012

The Preg question type is a question type that uses regular expressions (regexes) to check student's responses. Regular expressions give vast capabilities and flexibility to both teachers when making questions and students when writing answers to them. This documentation contains a part about expressions in general, a part about the regular expressions as a particular case of expressions and finally a part about the Preg question type itself. If you are familiar with the regex syntax you may skip first parts and go to the usage of the Preg question type section. More details about the regex syntax can be found at http://www.nusphere.com/kb/phpmanual/reference.pcre.pattern.syntax.htm.

Authors:

  1. Idea, design, question type and behaviours code, regex parsing and error reporting - Oleg Sychev.
  2. Regex parsing, DFA regex matching engine - Dmitriy Kolesov.
  3. Regex parsing, NFA regex matching engine, testing of the matchers, backup&restore, subpatterns, backreferences and unicode support - Valeriy Streltsov.

We would gladly accept testers and contributors (see the development plans section) - there is still more work to be done than we have time. Thanks to Joseph Rezeau for being devoted tester of Preg question type releases and being the original author of many ideas that was implemented in Preg question type.

Understanding expressions

The regular expressions - as any expressions - are just a bunch of operators with their operands. Don't worry - you all learned to master arithmetic expressions from chilhood and regular ones are just as easy - if you look on them from the right angle. Learn (or recall) only 4 new words - and you are a master of regexes with very wide possibilities. Let's go?

Look at a simple math expression: x+y*2. There are two operators: '+' and '*'. The operands of '*' are 'y' and '2'. The operands of '+' are 'x' and the result of 'y*2'. Easy?

Thinking about that expression deeper we can find that there is a definite order of evaluation, governed by operator's precedence. The '*' has a precedence over '+', so it is evaluated first. You can change the evaluation order by using parentheses: (x+y)*2 will evaluate '+' first and multiply the result by 2. Still easy?

One more thing we should learn about operators is their arity - this is just the number of operands required. In the example above '+' and '*' are binary operators - they both take two operands. Most of arithmetic operators are binary, but the minus has the unary (single operand) form, like in this equation: y=-x. Note that the unary and binary minuses work differently.

Now any epxression are just a lego game, where you set a sequence of operators with correct number of operands for each (arity), taking heed of their evaluation order by using their precedence and parentheses. Arithmetic expressions are for evaluating numbers. Regular expressions are for finding patterns in strings, so they naturally use another operands and operators - but they are governed by the same rules of precedence and arity.

Regular expressions

Regular expressions is a powerful mechanism for searching in strings using patterns. So their operands are characters or character sets. A is a regular expressions that matches a single character 'A'. The ways to define character sets are described below. The special characters that define operators should be escaped when used as operands - preceded by a backslash. These special characters are:

\ ^ $ . [ ] | ( ) ? * + { }

Mathematical expressions never have escaping problems since their operands (numbers, variables) are constructed from different characters than operators (+,- etc), but when constructing a pattern for matching you should be able to use any character as an operand.

Operands

Here's an incomplete list of operands that define character sets.

  1. Simple characters (with no special meaning) match themselves.
  2. Escaped special characters match corresponding special characters. Escaping means preceding special characters by the backslash "\". For example, the regex "\|" matches the string "|", the regex "a\*b\[" matches the string "a*b[". Backslash is a special character too and should be escaped: "\\" matches "\". NOTE! when you are unsure whether to escape some character, it is safe to place "\" before any character except letters and digits. Do not escape letters and digits unless you know what you are doing - they get special meaning when escaped and lose it when not.
  3. Character sets match any character defined in them. Character sets are defined by brackets. The particular ways to define a character set are:
    • "[ab,!]" matches "a", "b", "," and "!";
    • "[a-szC-F0-9]" contains ranges (defined by a hyphen between 2 characters) "a-z", "C-F" and "0-9" mixed with the single character "z", it matches any character from "a" to "s", "z", from "C to "F" and from "0" to "9";
    • "[^a-z-]" starts with the "^" that means a negative character set: it matches any character except from "a" to "z" and "-" (note that the second hyphen is not placed between 2 characters so defines itself);
    • "[\-\]\\]" contains escaping inside a character set: it matches "-", "]" and "\", other characters loose their special meaning inside a character set and can be be not escaped, but if you want to include "^" in a character set it shouldn't be first there;
  4. Dot meta-character (".") matches any possible character (except newline, but students can't enter it anywhere), escape it "\." if you need to match a single dot.
  5. Escape sequences for common character sets:
    • "\w" for any word character (letter, underscore or digit) and "\W" for any non-word character;
    • "\s" for any space character and "\S" for any non-space character;
    • "\d" for any digit and "\D" for any non-digit.
  6. Simple assertions - they are not characters, but conditions to test, they don't consume characters while matching, unlike other operands:
    • "^" matches in the start of the string, fails otherwise;
    • "$" matches in the end of the string, fails otherwise;
    • "\b" matches on a word boundary, i.e. either between word (\w) and non-word (\W) characters, or in the start (end) of the string if it starts (ends) with a word character;
    • "\B" matches not on a word boundary, negative to "\b".

Still, a pattern that matches only one character isn't very useful. So here comes the operators that allow us to define an expression which matches strings of several characters.

Operators

Here's a list of the common regex operators:

  1. Concatenation - so simple binary operator that doesn't require any special character to be defined. It is still an operator and has it's precedence, which is important if you want to understand where to use brackets. Concatenation allows you to write several operands in sequence:
    • "ab" matches "ab";
    • "a[0-9]" matches "a" followed by any digit, for example, "a5"
  2. Alternative - a binary operator that lets you define a set of alternatives:
    • "a|b" matches "a" or "b";
    • "ab|cd|de" matches "ab" or "cd" or "de";
    • "ab|cd|" matches "ab" or "cd" or emptiness (useful as a part in more complex expressions);
    • "(aa|bb)c" matches "aac" or "bbc" - using parentheses to outline alternative set;
    • "(aa|bb|)c" matches "aac" or "bbc" or "c" - typical usage of the emptiness;
  3. Quantifiers - an unary operator that lets you define repetition of something used as its operand:
    • "x*" matches "x" zero or more times;
    • "x+" matches "x" one or more times;
    • "x?" matches "x" zero or one times;
    • "x{2,4}" matches "x" from 2 to 4 times;
    • "x{2,}" matches "x" two or more times;
    • "x{,2}" matches "x" from 0 to 2 times;
    • "x{2}" matches "x" exactly 2 times;
    • "(ab)*" matches "ab" zero or more times, i.e. if you want to use a quantifier on more than one character, you should use parentheses;
    • "(a|b){2}" matches "aa" or "ab" or "ba" or "bb", i.e. it is a repeated alternative, not a repetition of "a" or "b".

Precedence and order of evaluation

A Quantifier has precedence over concatenation and concatenation has precedence over alternative. Let's look what it means:

  1. quantifiers over concatenation means that quantifiers are executed first and will repeat only a single character if used without parentheses:
    • "ab*" matches "a" followed by zero or more "b";
    • "(ab)*" matches "ab" zero or more times - changing the previous regex by using parentheses allows us define a string repetition;
  2. concatenation over alternative means that you can define multi-character alternatives without parentheses (for single character alternatives it's better to use character classes, not the alternative operator):
    • "ab|cd|de" matches "ab" or "cd" or "de";
    • "(aa|bb|)c" matches "aac" or "bbc" or "c" - typical use of an empty alternative;
  3. quantifier over alternative means that you should use parentheses to repeat an alternative set:
    • "ab|cd*" matches "ab" or "c" followed by zero or more "d" like "cdddddd";
    • "(ab|cd)*" matches "ab" or "cd", repeated zero or more time in any order, like "ababcdabcdcd". Note that quantifiers repeat the whole alternative, not a definite selection from it, i.e.:
    • "(a|b){2}" matches "aa" or "ab" or "ba" or "bb", not just "aa" or "bb";
    • "a{2}|b{2}" matches "aa" or "bb" only.

Assertions

Assertions about some part of the string don't actually go into matching text, but affect the matching occurrence:

  • positive lookahead assertion "a+(?=b)" matches any number of "a" ending with "b" without including "b" in the match;
  • negative lookahead assertion "a+(?!b)" matches any number of "a" that is not followed by "b";
  • positive lookbehind assertion "(?<=b)a+" matches any number of "a" preceeded by "b";
  • negative lookbehind assertion "(?<!b)a+" matches any number of "a" that is not preceeded by "b".

Matching

Matching means finding a part of the student's answer that suits the regular expression. This part called match. You should enter regular expressions as answers to questions without modifiers or enclosing characters (modifiers will be added for you by the question - "u" is added always and "i" is added in case-insensitive mode). You should also enter one correct response (that matches at least one 100% grade regex) to be shown to the student as correct answer. The question will use all regular expressions in order to find first full match (full for expression, but not necessary all response - see anchoring) and give a grade from it. If there is no full match and engine supports partial matching (see hinting) then a partial match that is the shortest to complete will be choosen (for displaying a hint, zero grade is given) - or the longest one, if engine can't tell which one will be the shortest to complete.

Anchoring

Anchoring is used to set restrictions on the matching process by using simple assertions:

  • if a regular expression starts with the ^ the match should start at the start of the student's response;
  • if a regular expression ends with the $ the match should end at the end of the student's reponse;
  • otherwise a regex match can be found anywhere inside a student's response.

Note that simple assertions are concatenated with regex and concatenation has precedence over alternative, this makes it's usage slightly tricky:

  • "^ab|cd$" will match "ab" from the start of the string or "cd" at the end of it;
  • "^(ab|cd)$" using brackets to match exactly with "ab" or "cd";
  • "^ab$|^cd$" is another way to get exact match (all top-level alternatives are anchored).

If you set the exact matching options to "yes" (which is the default value), the question will add ^ and $ in each regular expression for you (it will not affect subpattern usage). However, you may prefer to use some non-anchored regexes to catch common errors and give feedback and use manually anchored expressions for grading.

Local case-sensitivity modifiers

Starting from Preg 2.1 you can set case-(in)sensitivity for parts of your regular expressions by using the standard syntax of Perl-compatible regular expressions:

  • "(?i)" will turn case-sensitivity off;
  • "(?-i)" will turn case-sensitivity on.

This affects general case-sensitivity, which is choosen on the question level. So you can make some answers case-sensitive and some not, or even do this for the parts of answers. For example you can set question as "use case" and have a 50% answer starting with "(?i)" to grade lesser when the case doesn't match, but everything else is correct.

When placed in parentheses, local modifiers work up to the closest ")". When placed on the top level (not inside parentheses) they work up to the end of the expression, i.e. with case sensitivity on for the question:

  • "abc(de(?i)gh)xyz" will have the bold part case-insensitive;
  • "abc(de)(?i)ghxyz" will have the bold part case-insensitive.

Usage of the Preg question type

Basically, this question type is an extended version of the Shortanswer.

Notations

Starting from Preg 2.1, the "notations" feature allows you to choose a notation in which regexes for answers will be written. The Regular expression which means Perl-compatible regex dialect is the default one. The exciting part of notations is that you can use the Preg question type just as improved shortanswer, having access to the hinting without any need to understand regular expressions! Just choose the Moodle shortanswer notation and you can just copy answers from you shortanswer questions. The '*' wildcard is supported. By choosing NFA or DFA engine you can get access to the hinting. You can skip all that is said on regular expression topic there, but be sure to read the hinting section to understand various settings you can alter to configure you question hinting behaviour.

Hinting

Some matching engines support hinting (not an easy thing to do using PHP at all) in the adaptive mode.

Hinting starts with partial matching. When a student enters a partially correct answer, partial matching finds that response starts matching and on some character breaks it. Say you entered an expression:

 are blue, white(,| and) red

and a student answered:

 they are blue, vhite and red

Partial matching will find that the partial match is

 are blue, 

Remember, the regular expresion in unanchored so the match shouldn't start with the start of the student's response. While using just partial matching the student will be shown correct and incorrect parts:

 they are blue, vhite and red

When hinting is available, student will have the hint button by pressing which he receives a hint with one next correct character, highlighted by background coloring:

 they are blue, wvhite and red

You should typically set hint penalty more than usual question penalty, because they are applied separately: usual penalty for an attempt without hinting, while hint penalty for an attempt with hinting. Preg question type doesn't add hinted characters to the student's response (unlike the regex question type), showing it separately instead for a number of reasons:

  1. it is student's responsibility whether he wants to add hinted character to the his response (and some more possibly);
  2. it slightly facilitates thinking about hint, since when the response is modified it is too easy to repeatedly press hint, which is not a desirable behavour usually.

When possible (if question engine supports it), hinting chooses a character that leads to the shortest path to complete the match. Consider this response to the previous regular expression:

 are blue, white; red

There are two possible hint characters: ',' or ' '. The question will choose ',' since it leads to the shortest path to complete the match, while ' ' leads to the path 3 characters longer.

It is possible that not all regular expressions will give 100% grade. Consider you added an expression for the students with bad memory:

 are white(,| and) red

with 60% grade and feedback about forgetting blue. You may not want hinting to lead student to the response

  are white, red

if he entered

  are white, oh I forgot other colors.

Hint grade border controls this. Only regular expressions with the grade greater or equal than the hint grade border will be used for partial matching and hinting. If you set hint grade border to 1, only 100% grade regular expression will be used for hinting, if you set it to 0,5 regular expressions with 50% then 100% grades will be used and 0%-49% would not. Regular expressions not used for hinting work only when they have a full match in the student response.

Subpattern capturing and feedback

Any pair of parentheses in a regex are considered as a subpattern and when matching the engine remembers (captures) not only the whole match, but its parts corresponding to all subpatterns. Subpatterns can be nested. If a subpattern is repeated (i.e. have quantifier), than only last match of all repeats will be captured. If you want to change order of evaluation without defining a subpattern to capture (which will speed up processing), you should use (?: ) instead of just ( ). Lookaround assertions don't create subpatterns.

Subpatterns are counted from left to right by opening parentheses. Precisely 0 is the whole regex, 1 is first subpattern etc. You can insert them in the answer's feedback using simple placeholders: {$0} is replaced by the whole match, {$1} by the first subpattern value etc. That can improve the quality of you feedbacks. Placeholders won't work on the general feedback because different answers can have different number of subpatterns.

PHP preg engine and NFA support full subpattern capturing. DFA engine can't do it by its nature, so you can use only {$0} placeholder when using the DFA engine.

Let's look at a regex defining a decimal number with optional integral part:

[+\-]?([0-9]+)?\.([0-9]+)

It has two subpatterns: first capturing integral part, second - fractional part of the number. If you wrote the feedback:

The number is: {$0} Integral part is {$1} and fractional part is {$2}

Then a student entered

123.34

He will see

The number is: 123.34 Integral part is 123 and fractional part is 34

If no integral part is given, {$1} will be replaced by empty string. There is no way (for now) to erase "Integral part is" under that circumstances - the placeholder syntax may become complex and prone to errors.

Error reporting

Native PHP preg extension functions only report if there is an error in regular expression or not, so PHP preg extension engine can't tell you much about the error.

NFA and DFA engines use a custom regular expression parser, so they support the advanced error reporting. The are several classes of potential errors:

  • more than two top-level alternatives in a conditional subpattern "(?(?=f)first|second|third)";
  • unopened closing parenthesis "abc)";
  • unclosed opening parenthesis of any sort (subpatterns, assertions, etc) "(?:qwerty";
  • empty parentheses of any sort "(?=)";
  • quantifier without an operand, i.e. at the start of (sub)expression with nothing to repeat "+" or "a(+)";
  • unclosed brackets of character classes "[a-fA-F\d";
  • setting and unsetting the same modifier at the same time "(?i-i)";
  • unknown unicode properties "\p{Squirrel}";
  • unknown posix classes "hamster:";
  • unknown (*...) sequence "(*QWERTY)";
  • incorrect ranges for quantifiers "a{5,4}" or character sets "[z-a]".

PCRE (and preg functions) treat most of them as non-errors, making many characters meaning context-dependent. For example, a quantifier {2,4} placed at the start of a regular expression loses the meaning as a quantifier and is treated as a five-characters sequence instead (that matches with the string "{2,4}"). However such syntax is very prone to errors and makes writing regular expression harder.

For now I vote for reporting errors instead of treating them as literals, even if it means incompatibility with PCRE. If you stand for or against this decision then please write you positions and reasons to the comments. It may be best to have two modes, but this literally means two parsers and this is out of current scope of development. There are more pressing issues ahead.

Looking for missing things

Joseph Rezeau's REGEXP question type has a missing words feature, allowing to define an answer that will work when something is absent in the answer (and give an appropriate feedback to the student).

Similar effect can be achieved with negative assertions combined with anchoring the matching start. The regular expression to look for the missing word necessary would be

 ^(?!.*\bnecessary\b.*)

where

  • (?!.*\bnecessary\b.*) is a negative lookahead assertion, that allows matching only if there is no word necessary ahead of some point in the string;
  • ^ is an assertion too, that anchores the match to the start of the response (otherwise there would be places in response after the word "necessary", where matching is possible even if the word is present).

In case if the description is difficult to you, just surround regexp to be missing with ^(?! and ). Don't try '--' syntax, that is specific to Jospeh Rezeau's REGEX question type!

Sadly, no engine except PHP_preg_matcher is supportting complex assertions (i.e. (?! part). We are working on it, but it requires some complex work.

Matching engines

A matching engine means different program code that performs matching. There is no 'best' matching engine - it depends on the features you want to use and the regular expressions engine it should handle. They have a different degree of stability and offer different features to use.

PHP preg extension

It is based on the native PHP preg functions (which is in turn based on the PCRE library). It supports 100% perl-compatible regular expression features, it is very stable and thoroughly tested. Bot PHP functions doesn't support partial matching, so (unless we storm PHP developers to add support for partial matching) there is no hinting there. However it supports subpattern capturing. Choose it when you need complex regexp features that other engines don't support.

Deterministic finite state automata (DFA)

This is a custom PHP code that uses DFA matching algorithm. It is heavily unit-tested, but considered beta-quality for now. Not all PHP operands and operators are supported, and for some (more exotic) ones support can still differ from the standard. On the bright side it is support hinting.

Currently supported operands:

  • single characters
  • escaped special characters
  • character classes, including ranges and negative classes
  • escape sequences \w\W\s\S\t\d\D (locale-aware, but not Unicode for performance reasons, as in standard regular expression functions)
  • octal and hexadecimal character codes preceeded by \o and \x
  • meta-character . (any character)
  • unicode properties

Currently supported operators:

  • concatenation
  • alternative |
  • quantifiers * + ? {2,3} {2,} {,2} {2}
  • positive lookahead assertions
  • changing operator precedence ( ) (without subpattern capturing) or (?: )

Features that couldn't be supported by DFA matching at all:

  • subpattern capturing
  • backreferences
Non-deterministing finite state automata(NFA)

NFA engine was introduced in the 2.1 release. It is a custom matcher that can do everything that DFA matcher can, but also supports:

  • subpattern capturing (including named subpatterns, duplicate subpatterns numbers)
  • backreference capturing (including named backreferences)

So, you don't have to choose between hiting and subpattern capturing in you questions - NFA can do them both! Also, the NFA matcher is more stable than the DFA one and it is probably the best choise if you want to use partial matching with hinting, but without lookaround assertions.

The ways to give back

I am a high school teacher, researcher and programmer who must do much on his main paid job and have not free much time to spend on developing this question type. If you could help me in some ways, I may be able to spend more time and effort doing this thought. Some examples:

  • publishing a thesis or paper describing your usage of the Preg question I could give reference for would improve rating of the project there and my rating as a researcher/developer, so please publish and let me know the reference if you feel grateful for this software;
  • if you would take some more work and organise publishing a paper (or at least thesis) with me as co-author, that would help even more - please inform me immediately if you consider this;
  • if publishing is hard, you could just write me what your organisation is and how you use preg - that'll help and I would be able to better determine what should be done next;
  • join the testing efforts, either by performing manual test or by writing unit tests (it's easy to do even if you aren't a great programmer, you just need to know regular expressions - contact me and I'll tell you how).


Development plans

There is no definite shedule or order of the development for those features - it depends on the available time and developers. Many features require complex code to achieve the results. If you want to help us with a specific feature, please contact the question type maintainer (Oleg Sychev) using http://moodle.org messaging.

  • Improve simple assertions support
  • Support for complex assertions
  • Hinting not one character, but completion of the whole world
  • Add automatic generation of shortest possible correct answer in user-readable form
  • Add a set of authoring tools to make writing regular expressions easier
  • Develop the backtracking matching engine
  • Develop more help and examples for the people that don't know much about regular expressions.