Datascrap splunk results

Hi All,

How to assign datascrap data to a variable ? If it is multiple more than one how to use in variable?

@Sathish_Ashokan

If its a table then in extract datatable activity you have an output datatable field

Cheers

and if you have multiple scrapped data in multiple variables as datatable then you can just merge it in the single using Merge Datatable activity.

Thanks,
Kalpesh

There are many options here

  1. You can have all the datatables as a list of datatable like in a variable named list_dt which is of type System.Generic.Collections.List(datatable)

  2. Or you can merge them all together as one datatable using MERGE DATATABLE activity
    You can do this only if all the datatable are of same column structure, order column and type

  3. If you want to extract it freshly from different page of same pattern then use table extraction
    Method

Hope this clarifies

Cheers @Sathish_Ashokan

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.