I want to capture this one! how?
-
Hello guys, hope you're all doing well.
From this response I want to capture the last one (name), how to do that in OB?
And thanks in advance.
-
Hey @test_it
Do you have try to tick recursive? Then parse
-
@Why001 Yes with JSON but it gives me lot of values that I don't need, I need only one value which is the Name.
-
@test_it Yes the recursive option makes you take everything out try with LR
Open parse block in the
LR "name" : "
RS ",
After you have do that you will see all name in recursive
Then open new parse block enter on the first parse block and parse it
-
@Why001 Good idea, thanks man it helped.
-
You can parse all recursively and then grab only the n-th element using
<LIST[X]>
where X is n-1
-
You also can parse what is inside the Braces { then reparse what behind "name": and ",
-
Hi ,
see here all is explained
https://forum.openbullet.dev/topic/17/fixed-variables
-
@Ruri Any documentation for that, I didn't understand