Guest
Suppose a legal string is (REG-|CAP-)*TRA, i.e. zero or more occurrences of "REG" and "CAP" followed by "TRA". Example: REG-REG-CAP-REG-TRA is a valid sequence.
How do we code the above regular expression in SKILL?
The * operator seems to work only over a single character rather than a string.
How do we code the above regular expression in SKILL?
The * operator seems to work only over a single character rather than a string.