Hello,
it is a little bit wired for this error because when i try to debug the execution it works but when i run it directly i have this error i am really confused and i can move on.
i am using this workflow :
assign VenderInformation :
System.Text.RegularExpressions.Regex.Split(VenderInformation,“\s?(?:\s?[a-zA-Z]*:\s)”,System.Text.RegularExpressions.RegexOptions.IgnoreCase)
and second assign for the out_taxID where i get the error
venderinformation_arraystring(1)
Any help please
thank you
Ramprasad
(Ramprasad Jilla)
October 7, 2019, 10:02am
2
Hi @Talelovesky ,
Try with below
Out_TaxID = VendorInformation.Split(VbNewLine.ToCharArray)(0).Split(“:”.ToCharArray)(1)
Thanks.!
Ramprasad
It is the same error when i run it drictly any help
Ramprasad
(Ramprasad Jilla)
October 7, 2019, 10:14am
5
Place this assign activity after get text Activity
Out_TaxID = VendorInformation.Split(VbNewLine.ToCharArray)(0).Split(“:”.ToCharArray)(1)
check your get transaction data did u set transactionitem = transaction number - 1
Ramprasad
(Ramprasad Jilla)
October 8, 2019, 5:42am
8
Hi @Talovesky ,
Please find the below Solution
TaxID = VendorInformation.Split(VbNewLine.ToCharArray)(0).Split(“:”.ToCharArray)(1)
UiPathForum_157109_TaxID.xaml (5.0 KB)
Thanks.!
thank you for your help it was so valuable
system
(system)
Closed
October 13, 2019, 1:17pm
10
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.