How to extract a string after a specific word from worknotes
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2022 08:23 AM
Hi Team,
i have a requirement to extract right hand side value of code and note which is coming into worknotes as below format.
Code : test code.
Note : Please accept.
Can i know how to do it using regex in BR
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2022 03:28 PM
The regex below should do the trick:
[\w\s]+\:\s(.*)
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2022 12:10 AM