REGEX QUESTION - HOW TO REMOVE SPECIFIC STRINGS FROM DATATABLE

Hi @billabong271294

Try this too

Let’s consider

input = "

Mova o calendário para cima 1.6900

AGE ACTION(@ 73.72)
Pular 1 em 73.52
Pular 2 em 73.22
Pular 3 em 72.72
Chutar at 74.74

"

Let’s intialise a list of string by using assign activity

list_1= New List (Of String)

list_1= Spilt (input, Environment.NewLine)

Use the invoke method to remove the element from list (remove element at zero index)

Check invoke method for this How can i delete a element from a List of String in UiPath - #3 by Santan_Barnwal

Then u use join operation for joining string together

String.Join(Environment.NewLine,input.ToArray)