I want to remove decimal from number.
For example: 88.99 should become 8899
Use an assign statement and use below expression
Regex.replace(“88.99”,“.”,“”)
Before this import system.text.regularexpressions
1 Like
in message box nothing is coming
I want the number like 8899 as output
Str = “88.99”
Str.replace(“.”,“”) - will give you output as 8899.
Try above one and let me know.
Use variable.replace(“.”,“”)
Input - 88.99
Output - 8899
Hi,
Thanks for this information
Hi,
I want to take screenshot of the whole page and then save image as required and this needs to be done multiple times as per the records in Excel
Hi,
I want to take screenshot of the whole page and then save image as required and this is done multiple times as per the records of the excel sheet.