Member since
12-10-2019
9
Posts
3
Kudos Received
2
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
4167 | 02-25-2020 05:26 AM | |
11515 | 12-11-2019 04:25 AM |
05-31-2021
08:13 PM
I managed to solve the problem. Below is an example of what I used to get the value of the attributes using the advanced part of the "UpdateAttribute". Hope this helps.
... View more
09-30-2020
11:03 AM
Hi @Biswa, Please look at the below spec: [ { "operation": "shift", "spec": { "*": { "urlTypeName": { "Spring URL": { "@(2,examUrl)": "ExamDashBoardURL[]" } } } } } ] Output will be: { "ExamDashBoardURL" : [ "https://exam.test.com/page/1473161074" ] } Tell me if this is ok.
... View more
07-04-2020
04:28 AM
Refer to the post here
... View more
06-28-2020
08:34 AM
1 Kudo
Hi @Biswa! I tried various ways of getting a unique id for each array. Most of them failed. But, I tried to append the array index to the unique id. Even while doing it, I faced many issues. See if the below spec is okay [ { "operation": "shift", "spec": { "aliases": { "*": { "@0": "alias[&1].name", "$0": "alias[&1].id.${UUID()}-&1" } } } }, { "operation": "shift", "spec": { "alias": { "*": { "id": { "*": { "$0": "alias[&3].id" } }, "*": "alias[&1].&" } } } } ]
... View more
12-11-2019
04:25 AM
2 Kudos
May be it will be useful for someone. I used searchValue as "\p{C}" and ReplaceValue as empty String \p{C} finds all non-printable characters.
... View more