Regular expressionsUna doesn't have a special syntax for regular expressions but you can use JavaScript RegExp classExample:= regexp new RegExp 'foo*'console.log (regexp.test 'table football')Copy