UiPath Advanced RPA Developer v1.0 Exam (UiARD) UiPath-ARDv1 Question # 80 Topic 9 Discussion

UiPath Advanced RPA Developer v1.0 Exam (UiARD) UiPath-ARDv1 Question # 80 Topic 9 Discussion

UiPath-ARDv1 Exam Topic 9 Question 80 Discussion:
Question #: 80
Topic #: 9

A developer automates a project for Finance Team. As the first step, robot needs to capture ticket numbers from a Sharepoint site and then search them in SalesForce application. However, on Sharepoint all ticket numbers contain 7 characters and start with zeros e.g. 0000728, 0011430, 0003219. While in SalesForce, zeros in front are removed e.g. 728, 11430, 3219.

How can robot overcome this inconsistency?


A.

newTicketNumber = oldTicketNumber.Substring(3)


B.

newTicketNumber = oldTicketNumber.Trim("0"c)


C.

newTicketNumber = oldTicketNumber.TrimStart("0"c)


D.

newTicketNumber = oldTicketNumber.Replace("0","")


Get Premium UiPath-ARDv1 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.