Hi ,
I need to replace the string in a field value role_seu_458137407337_prd-sso-data-science-752-2205-compute-role" -- > compute-role should be replaced as below 2 other field values .
role_seu_458137407337_prd-sso-data-science-752-2205-pl
role_seu_458137407337_prd-sso-data-science-752-2205-ds
I have tried replace command compute-role WITH pl IN ad. It didnt work
What would be the solution for this .Please help
Hi @hashsplunk,
Below should work;
| eval ad=replace(ad,"compute-role","pl")
If this reply helps you, an upvote is appreciated.