Search Using Regular Expression
Using .* AppViewX allows the user to do a regex search.
| Regex | Description |
|---|---|
| * | All the objects will be displayed. |
| <String>.* | Object names starting with the entered string will be fetched and displayed. |
| .*<String> | Object names ending with the entered string will be fetched and displayed. |
| <String>.*<String> | In the result object names start and end with the entered string and in the middle part it may contain anything. |