Hello friends,
I attach here an Excel File.
Arricchimento_2018_07_03_122846.xlsx (16.2 KB)
In the column “Indirizzo”
there is a string “( variable number)” which I should eliminate.
I should manipulate the variable Indirizzo so that I can eliminate the (number).
Can anyone kindly help me?
Thank you so much,
Camilla.
arivu96
(Arivazhagan A)
July 3, 2018, 3:41pm
2
Hi @CamiCat ,
Try this way to update the data
Use For each row activity
update the record
row("Indirizzo")=System.Text.RegularExpressions.Regex.Replace(Convert.ToString(row("Indirizzo")),"(\(\d*\))", "")
Regards, Arivu
1 Like
@CamiCat Please find below file.
A—.xaml (10.0 KB)
1 Like
loginerror
(Maciej Kuźmicz)
July 3, 2018, 3:55pm
4
You can also use a regex formula like that one:
(?<=\(\d\) ).+
This will select everything after the "(digit) "
1 Like
Thank you so much @loginerror .
I’ll try with your solution and let you know as soon as possible.
Camilla
Thank you so much @arivu96 .
I’ll try and let you know as soon as possible.
Camilla.