> 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="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FR6xoHB42sTNvxtz9p9yN%2Fimage.png?alt=media&amp;token=2f2dd608-8a9b-4f14-b192-c39328b37a7f" alt=""><figcaption></figcaption></figure>
