    

 ## On this page

  

 

 # get\_topo\_faces\_of\_zone\_name\_pattern

 Last update: 17.07.2025 

<a id="ansys.meshing.prime.Part.get_topo_faces_of_zone_name_pattern"></a>

#### Part.get\_topo\_faces\_of\_zone\_name\_pattern(zone\_name\_pattern, name\_pattern\_params)

Get topoface ids of zones with name matching the given name pattern.

- **Parameters:**
    
    **zone\_name\_pattern**: Name pattern to be matched with zone name.
    
    **name\_pattern\_params**: Name pattern parameters used to match zone name pattern.
- **Returns:**
    
    `Iterable`\[[`int`](https://docs.python.org/3.11/library/functions.html#int)\] : Return topoface ids of zones with name matching the name pattern.
- **Return type:**
    
    [`Iterable`](https://docs.python.org/3.11/library/typing.html#typing.Iterable)\[[`int`](https://docs.python.org/3.11/library/functions.html#int)\]

### Examples

```pycon
&gt;&gt;&gt; name_pattern_params = prime.NamePatternParams(model = model)
&gt;&gt;&gt; topo_faces = part.get_topo_faces_of_zone_name_pattern("wall*", name_pattern_params)

```