| { |
| "paper_id": "X98-1004", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T15:06:01.533088Z" |
| }, |
| "title": "THE COMMON PATTERN SPECIFICATION LANGUAGE", |
| "authors": [ |
| { |
| "first": "Douglas", |
| "middle": [ |
| "E" |
| ], |
| "last": "Appelt", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| }, |
| { |
| "first": "Boyan", |
| "middle": [], |
| "last": "Onyshkevych", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| }, |
| { |
| "first": "Ft", |
| "middle": [], |
| "last": "Meade", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "This paper describes the Common Pattern Specification Language (CPSL) that was developed during the TIPSTER program by a committee of researchers from the TIPSTER research sites. Many information extraction systems work by matching regular expressions over the lexical features of input symbols. CPSL was designed as a language for specifying such finite-state grammars for the purpose of specifying information extraction rules in a relatively system-independent way. The adoption of such a common language would enable the creation of shareable resources for the development of rule-based information extraction systems. 1. THE NEED FOR CPSL As researchers have gained experience with information extraction systems, there has been some convergence of system architecture among those systems based on the knowledge engineering approach of developing sets of rules more or less by hand, targeted toward specific subjects. Some rule-based systems have achieved very high performance on such tasks as name identification. Ideally, developers of information extraction systems should be able to take advantage of the considerable effort that has gone into the development of such highperformance extraction system components. Unfortunately, this is usually impossible, in part because each system has a native formalism for rule specification, and the translation of rules from one native formalism to another is usually a slow, difficult, and error-prone process that ultimately discourages the sharing of system components or rule sets.", |
| "pdf_parse": { |
| "paper_id": "X98-1004", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "This paper describes the Common Pattern Specification Language (CPSL) that was developed during the TIPSTER program by a committee of researchers from the TIPSTER research sites. Many information extraction systems work by matching regular expressions over the lexical features of input symbols. CPSL was designed as a language for specifying such finite-state grammars for the purpose of specifying information extraction rules in a relatively system-independent way. The adoption of such a common language would enable the creation of shareable resources for the development of rule-based information extraction systems. 1. THE NEED FOR CPSL As researchers have gained experience with information extraction systems, there has been some convergence of system architecture among those systems based on the knowledge engineering approach of developing sets of rules more or less by hand, targeted toward specific subjects. Some rule-based systems have achieved very high performance on such tasks as name identification. Ideally, developers of information extraction systems should be able to take advantage of the considerable effort that has gone into the development of such highperformance extraction system components. Unfortunately, this is usually impossible, in part because each system has a native formalism for rule specification, and the translation of rules from one native formalism to another is usually a slow, difficult, and error-prone process that ultimately discourages the sharing of system components or rule sets.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "Over the course of the TIPSTER program and other information extraction efforts, many systems have converged on an architecture based on matching regular expression patterns over the lexical features of words in the input texts. The Common Pattern Specification Language (CPSL) was designed to take advantage of this convergence in architecture by providing a common formalism in which finite-state patterns could be repre-sented. This would then enable the development of shareable libraries of finite-state patterns directed toward specific extraction tasks, and hopefully remove one of the primary barriers to the fast development of high-performance information extraction systems. Together with common lexicon standards and annotation standards, a developer can exploit previous domain or scenario customization efforts and make use of the insights and the hard work of others in the extraction community. The CPSL was designed by a committee consisting of a number of researchers from the Government and all of the TIPSTER research sites involved in Information Extraction that are represented in this volume.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "A pattern language is intended to be interpreted. Indeed, the interpreter is what gives the syntax of the language its meaning. Therefore, CPSL was designed with a loosely specified reference interpreter in mind. It was realized that extraction systems may not work exactly like the reference interpreter, and it was certainly not the goal of the designers to stifle creativity in system design. However, it was hoped that any system that implemented at least the functionality of the reference interpreter would, given appropriate lexicons, be able to used published sharable resources.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "INTERPRETER ASSUMPTIONS", |
| "sec_num": "2." |
| }, |
| { |
| "text": "The functionality assumed to be implemented by the reference interpreter is as follows:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "INTERPRETER ASSUMPTIONS", |
| "sec_num": "2." |
| }, |
| { |
| "text": "The interpreter implements cascaded finite-state transducers.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "INTERPRETER ASSUMPTIONS", |
| "sec_num": "2." |
| }, |
| { |
| "text": "Each transducer accepts as input a sequence of annotations conforming to the Annotation object specification of the TIPSTER Architecture [Grishman, this volume]. The fundamental operation performed by the interpreter is to test whether the next annotation in sequence has an attribute with a value specified by the grammar being interpreted.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "INTERPRETER ASSUMPTIONS", |
| "sec_num": "2." |
| }, |
| { |
| "text": "Each transducer produces as output a sequence of annotations conforming to the Annotation object specification of the TIPSTER Architecture.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "INTERPRETER ASSUMPTIONS", |
| "sec_num": "2." |
| }, |
| { |
| "text": "The interpreter maintains a \"cursor\" marking the current position in the text. All possible rules are matched at each point. One of the matching rules is selected as a \"best match\" and is applied. The application of a rule results in the creation of new annotations, and in moving the \"cursor\" to a new position.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "INTERPRETER ASSUMPTIONS", |
| "sec_num": "2." |
| }, |
| { |
| "text": "The interpreter does an initial tokenization and lexical lookup on the input. Each lexical input item is marked with a Word annotation, and attributes from the lexicon are associated with each annotation.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "INTERPRETER ASSUMPTIONS", |
| "sec_num": "2." |
| }, |
| { |
| "text": "The interpreter provides an interface to any external functions to extend the functionality of the basic interpreter. Such functions should be used sparingly and be carefully documented. One example of a legitimate use would be to construct tables of information useful to subsequent coreference resolution.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "INTERPRETER ASSUMPTIONS", |
| "sec_num": "2." |
| }, |
| { |
| "text": "To date, one interpreter has been developed that closely conforms to the specifications of the reference interpreter, namely ", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "INTERPRETER ASSUMPTIONS", |
| "sec_num": "2." |
| }, |
| { |
| "text": "Input: Word, NamedEntity", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "INTERPRETER ASSUMPTIONS", |
| "sec_num": "2." |
| }, |
| { |
| "text": "Finally, the language supports an Options declaration, where the user can specify implementation-dependent interpreter options to be used when interpreting the grammar.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "INTERPRETER ASSUMPTIONS", |
| "sec_num": "2." |
| }, |
| { |
| "text": "The rules section is the core of the grammar. It consists of a sequence of rules, each with a name and an optional priority. The general syntax of a rule definition is", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rules Section", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "Rule: <rule_name> Priority: <integer> <rule_pattern part> --> <rule_action_part>", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rules Section", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "Rules have names primarily for the implementation dependent convenience of error printing and tracing modules. Priority values can be any integer, and indicate to the interpreter whether this rule is to take precedence over other rules. The implementation of priority in the reference interpreter is that the rule matching the most annotations in the input stream is preferred over any rule matching fewer annotations, and if two rules match the same number of annotations, the rule with the highest priority is preferred. If several rules match that have the same priority, then the rule declared earlier in the file is preferred. Interpreters should adopt this priority semantics by default. If another priority semantics is implemented, the grammar writer can select it in the Options declaration.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rules Section", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "The reference interpreter is assumed to maintain a \"cursor\" pointer marking its position in the chunk of input currently being processed. The interpreter matches each rule pattern part against the sequence of annotations of the declared input type. If no rules match, then the cursor is moved past one input annotation. If one or more rule pattern parts match at the current cursor position, the interpreter selects the \"best\" match according to the priority criteria discussed above, and executes the rule action part for that rule. Finally, the interpreter moves the cursor past the text matched by the main body part of the rule pattern part. This process is repeated until the cursor is finally moved to the end of the current input chunk.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rules Section", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "The Rule Pattern Part.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rules Section", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "The pattern part of the rules consists of a prefix pattern, a body pattern, and a postfix pattern. The prefix and postfix patterns are both optional, but the body is mandatory. The syntax is as follows:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rules Section", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "< prefix_pattern > body_pattern < postfix_pattern >", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rules Section", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "When pattern matching begins, the reference interpreter assumes that the initial cursor position is between the prefix pattern and the body pattern. If the annotations to the immediate left of the cursor match the prefix pattern, then the body pattern is matched. If that match is successful, then the postfix pattern is matched. If all three matches are successful, then the pattern is deemed a successful match. Following success and execution of the rule's action part, the cursor is moved to the point in the text after which the body pattern matched, but before the postfix pattern, if any.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rules Section", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "Each of the constituents in the above rule is defined the same way. They are grouped (and optionally labeled) sequences of pattern elements. Labels are only useful in the central body pattern, because the annotations matched in the body pattern can be operated on by the action part of the rule. When a new annotation is created from a label in the body pattern, the new annotation receives a span consisting of the first through last characters covered by the spans of the matched annotations.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rules Section", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "Groups of pattern elements are enclosed with parenthe-ses, and are optionally followed by a label. There are two types of label expressions, indicated by \":\" and \"+:\" characters, respectively. When used in the pattern part of a rule, the \":\" label references the last-matched annotation within its scope. The \"+:\" annotation, on the other hand, refers to the entire set of annotations matched within its scope. Here is an example of labels used in a pattern:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rules Section", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "((~douglas\"):firstName ~appelt\") +:wholeName", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rules Section", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "In this example, the label \"firstName\" refers to the annotation spanning \"douglas\", and the label \"wholeName\" refers to the set of annotations { \"douglas\" \"appelt\" }.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rules Section", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "Pattern elements are constraints on the type, selected attributes and values of the next annotations in the input stream. The basic form of an attribute constraint is", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rules Section", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "The annotation_type must be one of the types listed on the Input declaration for this grammar. The attribute must be one of the attributes defined for that annotation type. The <rel> element is one of the relations appropriate for the attribute type. Possible relations are equal (==), not equal (!=), greater than (>), less than (<), greater than or equal to (>=), less than or equal to (<=). The <value> element can be a constant of any type known to the interpreter, or it can refer to an annotation matched in the pattern part. The data types supported by the reference interpreter are integer, floating point number, Boolean, string, symbol, a reference to another annotation, or sets of any of those types. The reference interpreter does not treat symbols and strings differently, except that if a symbol contains any non-alphanumeric characters, it must be enclosed in string quotes in order to be parsed correctly by the grammar compiler.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Annotation_type. attribute <rel> <value>", |
| "sec_num": null |
| }, |
| { |
| "text": "A pattern element consists of constraints in the above form, enclosed in brace characters. For example:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Annotation_type. attribute <rel> <value>", |
| "sec_num": null |
| }, |
| { |
| "text": "{Word.N == true, Word.number == singular}", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Annotation_type. attribute <rel> <value>", |
| "sec_num": null |
| }, |
| { |
| "text": "would match an annotation that has a Boolean \"N\" attribute with value true, and a character \"number\" attribute whose value is \"singular.\"", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Annotation_type. attribute <rel> <value>", |
| "sec_num": null |
| }, |
| { |
| "text": "The reference interpreter assumes that if an attribute is not present on an annotation, it will be treated as though it were a Boolean attribute with value false. Reasonable type coercion is done when comparing values of different types.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Annotation_type. attribute <rel> <value>", |
| "sec_num": null |
| }, |
| { |
| "text": "An abbreviation allows an entire pattern element to be replaced by a quoted string. This is shorthand for constraining the lemma attribute of the default input annotation for this grammar to be the specified string. For example, if annotation type Word were declared to be the default input type for the current grammar then the pattern element \"howdy\" would be exactly equivalent to typing {Word.lemma == ~howdy\"}.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Annotation_type. attribute <rel> <value>", |
| "sec_num": null |
| }, |
| { |
| "text": "The reference interpreter assumes that the value of the lemma attribute is the character sequence that is used to look the word up in the lexicon to obtain its other lexical attributes.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Annotation_type. attribute <rel> <value>", |
| "sec_num": null |
| }, |
| { |
| "text": "In addition to being sequenced in groups, pattern elements can be combined with one of several regular expression operators. As you would expect, * matches zero or more occurrences of its argument, + matches one or more occurrences, and ? matches zero or one occurrences.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Annotation_type. attribute <rel> <value>", |
| "sec_num": null |
| }, |
| { |
| "text": "Finally, a pattern element can be a call to an external function. An external function call is simply the name of the function followed by parameters enclosed in square brackets. The function must be defined to return a Boolean value, and it can take any number of arguments, which can be references to annotations and attributes bound by labels defined to the left of where the external function call appears in the pattern. If the function returns true, the pattern matching continues, and it fails if the function returns false.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Annotation_type. attribute <rel> <value>", |
| "sec_num": null |
| }, |
| { |
| "text": "The rule action part tells the interpreter what to do when the rule pattern part matches the input at the current position, and consists of a comma-separated list of action specifications. The basic form of an action specification is annotation/attribute <assignment_operator> <value>", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rule Action Part", |
| "sec_num": null |
| }, |
| { |
| "text": "The annotation/attribute specification is an instruction to the interpreter to build a new annotation. The annotation/attribute specification has the following syntax:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rule Action Part", |
| "sec_num": null |
| }, |
| { |
| "text": ":<label>.<annotation_type>. <attribute>", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rule Action Part", |
| "sec_num": null |
| }, |
| { |
| "text": "The label must be one of the labels defined in the pattern part of the rule. Also, the label must have been bound during the pattern-matching phase. For example, a label in an optional element that was not matched would be unbound, and generate a runtime error. The annotation type of the newly created annotation can be any annotation type. The attribute is optional. If present, it means to assign the value on the right hand of the assignment operator to the indicated attribute on the newly created annotation. If the attribute is not present, then the only legal value on the right hand of the assignment operator is \"@\", which tells the interpreter to create an annotation spanning the specified label, but which has no attributes.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rule Action Part", |
| "sec_num": null |
| }, |
| { |
| "text": "The binding and the type of the label determine the span set of the newly created annotation. If the label was defined with \":\", the annotation has a single span, which is the first through the last character of the annotations in the group to which the label is attached. If the label was defined with \"+:\", the new annotation has a set of spans, where each span in the set is obtained from one of the annotations in the group to which the label is attached.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rule Action Part", |
| "sec_num": null |
| }, |
| { |
| "text": "When the reference interpreter is evaluating an assignment statement, it looks for an annotation of the type specified on the left -hand side that has the exact span specified by the label. If one exists, then that one is used to complete the assignment operation. Otherwise, a new annotation is created. This functionality allows one to assign values to multiple attributes on a single annotation by using a sequence of assignment actions with the same label and annotation type.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rule Action Part", |
| "sec_num": null |
| }, |
| { |
| "text": "CPSL includes two assignment operators: \"=\" and \"+=\". The former operator is the basic assignment operator. The latter operator assumes that the left hand operand represents a set, and the right hand element is added to the set by the assignment.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rule Action Part", |
| "sec_num": null |
| }, |
| { |
| "text": "In addition to assignment statements, the action part of a rule can contain simple conditional expressions. Action specifications can also be calls to external functions, invoked as before, by the name of the function followed by a list of parameters enclosed in square brackets. External functions can return a value or be defined as void. If the function returns a value, it can appear on the right-hand side of an assignment statement. Otherwise, the external function call appears as an entire action specification.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rule Action Part", |
| "sec_num": null |
| }, |
| { |
| "text": "CPSL does not specify how the interface between the interpreter and the external function should be implemented. Each implementation is free to define its own API.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Rule Action Part", |
| "sec_num": null |
| }, |
| { |
| "text": "The grammar writer can optionally define macros at the beginning of a grammar definition file. CPSL macros are pure text substitution macros with the following twist: each macro consists of a pattern part and an action part, just like a CPSL rule. The macro is invoked by writing its name followed by an argument list delimited by double angle brackets somewhere in the pattern part of a rule. When the compiler encounters a macro call in the pattern part of the rule, it binds the parameters in the call to the variables in the macro definition prototype.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Macro Definition Section", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "The parameter bindings are substituted for occurrences of the parameters in the macro's pattern part, and the expanded pattern part is then inserted into the rule's pattern part in place of the macro call. Then, parameter substitution is performed on the macro's action part, and the resulting action specification is then added to the beginning of the rule's action part. It is permitted for the pattern part of a macro definition to contain references to other macros, so this macro substitution process is iterated until no more macro substitutions are possible.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Macro Definition Section", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "Here is an example of a macro definition: Macros can be used to automatically generate some very complicated rules, and when used judiciously can considerably improve their readability and comprehensibility.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Macro Definition Section", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "Short_and_stupid[X,lbl] ==> {Word.X ==", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The Macro Definition Section", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "The following is a BNF description of the common pattern specification language: ", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "A FORMAL DESCRIPTION OF CPSL", |
| "sec_num": "4." |
| } |
| ], |
| "back_matter": [], |
| "bib_entries": {}, |
| "ref_entries": { |
| "FIGREF0": { |
| "uris": null, |
| "type_str": "figure", |
| "num": null, |
| "text": "true, Word.ADJ == false} :ibl. Item.X = true, ;; An invocation of the above macro: Rule: foo (Short_and_stupid<<N,myLabel>>) :myLabel :myLabel. Item.type = stupid would result in the following rule being compiled: Rule: foo ({Word.N == true, Word.ADJ == false}):myLabel :myLabel. Item.N = true, :myLabel. Item.type = stupid" |
| }, |
| "TABREF2": { |
| "type_str": "table", |
| "num": null, |
| "html": null, |
| "content": "<table><tr><td colspan=\"2\">(IF :l.Word.lemma != false</td></tr><tr><td>THEN</td><td/></tr><tr><td>:rhs.DateTime.lemma</td><td>= :l.Word.lemma)</td></tr></table>", |
| "text": "The conditional expression can refer to the attributes of annotations bound during the pattern match. Simple conjunction and disjunction operators (& and D are provided for multiple conditional clauses, however, the language does not define a full Boolean expression syntax with parentheses and operator precedence. The clauses are simply evaluated left to fight. The THEN and ELSE clauses of the conditional consist of a Here is an example of a conditional expression:" |
| } |
| } |
| } |
| } |