Remove point from number

I want to remove decimal from number.
For example: 88.99 should become 8899

Hi @preksha_srivastava

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

@preksha_srivastava

Str = “88.99”

Str.replace(“.”,“”) - will give you output as 8899.

Try above one and let me know.

Hi @preksha_srivastava,

Use variable.replace(“.”,“”)
Input - 88.99
Output - 8899

Hi @preksha_srivastava,

Use like below

Regex.replace(“88.99”,“[^0-9]”,“”)

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.