> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/functions/functions.with_one_of_the_modifier_name_regexes.md).

# Functions.with\_one\_of\_the\_modifier\_name\_regexes()

`with_one_of_the_modifier_name_regexes(`*`regexes: List[str]`*`) →` [`Functions`](/glider-ide/api/functions.md)

Adds a filter to get functions that have a modifier whose name matches one of the given regexes.

## Example

```python
from glider import *

def query():
  
  # Fetch a list of functions with modifiers matching regex list
  functions = Functions().with_one_of_the_modifier_name_regexes(['^only.*', 'admin']).exec(10)

  return functions
```

## Output

<figure><img src="/files/Zyg7QpWWq0FD8X8cOe00" alt=""><figcaption></figcaption></figure>
