now im parsing 2 values from one response like this example
hello khaled you are so lucky
now i will do 2 parse blocks for parse block 1 = ( khaled ) & parse block 2 = ( so lucky )
now the idea i want to achieve how to merge those parsed values to be a full capture not one for each block like last shape
to be like this at end ( khaled so lucky )
Here is a example:
BLOCK:HttpRequest
url = "https://pastebin.com/raw/KTm2V9L2"
TYPE:STANDARD
$""
""
ENDBLOCK
BLOCK:Parse
input = @data.SOURCE
leftDelim = "railBorderRadius: '"
rightDelim = "'"
MODE:LR
=> VAR @PX
ENDBLOCK
BLOCK:Parse
input = @data.SOURCE
prefix = "Pixeles: "
suffix = " | Size: "
leftDelim = "size: '"
rightDelim = "'"
MODE:LR
=> VAR @SZ
ENDBLOCK
BLOCK:ZipLists
list1 = @SZ
list2 = @PX
=> CAP @zipListsOutput
ENDBLOCK
1 Like
thank you bro i got it now