wildcard search scripting and UI
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2016 11:12 AM
I need the equivalent of the following mssql search in a GlideRecord, or a way to do this in the UI
select *
from user
where title like '*chief*officer*'
In the above example records from table user having title "Chief Technology Officer" would be returned but records with title "Officer and Chief Advisor" would not.
If there is a way to provide a regex to a query that would also work.
Message was edited by: William Sammarco grammar corrected
Message was edited by: William Sammarco added alternate solution path
- Labels:
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2016 11:19 AM
In the filter Title > contains > Chief OR Title > Contains > Officer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2016 11:22 AM
This would return "Officer and Chief Advisor"

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2016 11:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2016 11:23 AM
This would return "Officer and Chief Advisor"