Adds a filter to get functions, that have modifier whose name matches the given regex.
Example
from glider import*defquery():# Fetch a list of functions with modifiers starting with 'only' functions =Functions().with_modifier_name_regex('^only.*').exec(10)return functions