79568000

Date: 2025-04-11 04:37:14
Score: 0.5
Natty:
Report link

So we do splitting considering the fact that data is repeating in format 'UID' 'Date' 'Time' 'Name'. Every data is in sets of 4 values. Here's how you can extract the useful information and then use it for whatever use case.

Here's a simple flow

enter image description here

Here i have stored your data in a Compose for reference.

enter image description here

First, we use this expression to break down to sets of 4 values.

chunk(split(outputs('RawUserData'),' '),4)

enter image description here

Then we use the extracted information to parse into an array of object names. (this is optional. the main array can be accessed directly as well. This step just makes the values more accessible.

enter image description here

Here's the mapping of the select as per our case.

{
  "UID": "@item()?[0]",
  "Name": "@item()?[3]",
  "DateTime": "@{item()?[1]} @{item()?[2]}"
}

So as you see, the final array is a well extracted and structured data.

enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Laviza Falak Naz