Item Values

Hi Team,

How to print the values present in between the for each loop item values. Say item contains values like
ABC DEF 12345678 THIS IS TEST 1 04MAY A
ABC DEF 87654321 THIS IS TEST 2 04MAY A
ABC DEF 11111111 THIS IS TEST 3 04MAY A

I am fetching above row values using for each activity each row present in item
i want to fetch only 12345678 in 1st row
87654321 in 2nd row and so on and store it in a variable. Help needed.

Hi @Balan

StringArray=split(Currentrow(“Your Column name”)," ")

Stringarray(2) contains the value.“12345678”

Please refer the xaml for your reference.

Main.xaml (4.7 KB)

Regards

Hi @Balan

You can try this out

In Pattern \d{4,} instead of “4” you can give what ever you want

Regards
Sudharsan

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