Retrieving value of one field in listview element

Hi! Facing the following issue:
The elements in the ListView (rows) are each like this:
ID: "xx" Title text "abcd......" Date: "dd.mm.yyyy" Number of cases: "xx"

After picking from the ListView I need to fetch the ID in the selected element. Is there a way to do that?

Your Elements look very close to JSON, which can be decoded by a Web block into a dictionary.

Wrap the Elements with {} and separate the tag:value parts with commas, so each Element becomes a JSON object.

{"ID": "xx" , "Title text": "abcd......" ,"Date": "dd.mm.yyyy" , "Number of cases": "xx"}