Strip Property Transfer
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2019
11:02 PM
08-13-2019
11:02 PM
Strip Property Transfer
Hello I have one Question I want wo use Property Transfer to Transfer Id from XML Response to Request.
In the Source Response I read the XML Value like:
//*:xxx/*:ID
The result is for example: item#13,3,8
For the Target I select //*:ID where The ID is transfered to.
But from the result.id I only want the second number behind the first comma, in my example: item#13,3,8
Is there a solution to do it?
Solved! Go to Solution.
2 REPLIES 2
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2019
02:44 AM
08-14-2019
02:44 AM
Hi,
Give this a try:
substring-before(substring-after(//*:xxx/*:ID, '#'), ',')
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2019
03:27 AM
08-14-2019
03:27 AM
I have to change your solution to:
substring-before(substring-after(//*:xxx/*:ID, ','), ',')
This works!
Thank you!
