UI Path Basic Hint/Tips:
MANICKA VASAN
MANICKA VASAN
Serving Notice - LWD: May 17 | 5+ Years of Experience, 4+ years in RPA development with UiPath, SQL, .NET, Python, AA360, and Power Automate. Good experience in building custom ML solutions in DU, OCR & Predictions.
BasicTips:
To get current Date and Time based on local computer use this expression:
DateTime.Now.ToString("dd/mm/yyyy")
To get some standard time like singapore/european time use this expression:
TimeZoneInfo.ConvertTimeBySystemTimeZoneId(currentTime, TimeZoneInfo.Local.Id, "Eastern Standard Time").ToString("dd/mm/yyyy")
To get input inside the folder use this expression:
Directory.GetFiles(Folderpath here..)
To enter print the text in next line use this expression:
Environment.newLine
Convertion of variable use this expression:
Convert.ToInt32(Value of String)
CInt(Value of string)
Trim the string use this expression:
(String as value).Trim
Thanks....