- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2025 06:16 PM
I would like to extract a specific string from a function field.
Specifically, a value such as "[ABC]XXXXX" is entered in the short description, so I would like to register the value extracted from only the "XXXXX" part in function field A.
Is this possible to set in a function field?
https://www.servicenow.com/docs/csh?topicname=platform-support-functions.html&version=latest
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2025 07:08 PM
Hi @MiY ,
Can you try this code
glidefunction:substring(short_description, add(position("]",short_description),1),length(short_description))
If my response helped please mark it correct and close the thread so that it benefits future readers.
Best Regards,
Krishnamohan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2025 07:08 PM
Hi @MiY ,
Can you try this code
glidefunction:substring(short_description, add(position("]",short_description),1),length(short_description))
If my response helped please mark it correct and close the thread so that it benefits future readers.
Best Regards,
Krishnamohan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2025 11:12 PM
@KrishnaMohan -san,
Thank you! Done!