Hello @AlonD ,
Thank you for clarifying the ask and sharing a sample.
Please try replace_regex() function which should help achieve your requirement. Please refer to below sample.
let str = "711ab733-6098-11c4_cbcc-e23562352354:public:nonprod:linux:linux_iaas:critical";
print trimmed_str = replace_regex(str, @"[^0-9A-Za-z]", "")
RESULT:
Hope this will help. Please let us know if any further queries.
------------------------------
- Please don't forget to click on
or upvote
button whenever the information provided helps you. Original posters help the community find answers faster by identifying the correct answer. Here is how
- Want a reminder to come back and check responses? Here is how to subscribe to a notification
- If you are interested in joining the VM program and help shape the future of Q&A: Here is how you can be part of Q&A Volunteer Moderators
Thanks @KranthiPakala-MSFT for the reply.
Basically I'd like to remove all characters expect [a-z], [A-Z], [0-9]
Here's an example for an output I'm getting from the query:
711ab733-6098-11c4-cbcc-e23562352354:public:nonprod:linux:linux_iaas:critical
Thanks!