Want outcome like this "22-40"

i am deleteing the rows in delete rows activity .in positions i am using veriable “final” to delete rows .so i used assign activity.
i have int count=22

str final = count.tostring+“-40”

but getting out put like 22-40 but i want output like this “22-40” how to add " " ?

@Hemant_Deshmukh

try this

str final = """" + count.tostring+"-40"""

cheers

Hi @Hemant_Deshmukh

Try this

strfinal = count.tostring+"-40"
final= " " + """" + final + """"

Hope it helps!!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.