group_name property

ReplacingArgs.group_name property

Identifies, by name, a captured group in the Aspose.Words.Replacing.ReplacingArgs.Match that is to be replaced with the ReplacingArgs.replacement string.

@property
def group_name(self) -> str:
    ...

@group_name.setter
def group_name(self, value: str):
    ...

Remarks

When group name is None, ReplacingArgs.group_index is used to identify the group.

Default is None.

See Also