Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update expressions.rst #655

Merged
merged 2 commits into from
Nov 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/source/user_guide/expressions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ can be used within a string as follows:
* ``abc\*`` collects all required entities with a name starting with abc.
* ``\*abc`` collects all required entities with a name ending with abc.
* ``\*abc*`` collects all required entities with a name containing abc.
* ``!abc\*`` collects all required entities with a name that is not starting with ab.
* ``\*abc,\*xyz`` ``\*abc \*xyz`` collects all required entities with a name ending with abc or xyz. A comma or a space represents ```OR``.
* ``!abc\*`` collects all required entities with a name that is not starting with abc.
* ``\*abc,\*xyz`` ``\*abc \*xyz`` collects all required entities with a name ending with abc or xyz. A comma or a space represents ``OR``.

The following example uses expressions in the :class:`ScopeDefinition <ansys.meshing.prime.ScopeDefinition>`
class. The :attr:`part_expression <ansys.meshing.prime.ScopeDefinition.part_expression>` parameter
Expand Down
Loading