how to convert from the string value to double using katalon?

You can convert it by Double.valueOf(String s)

String s = "50.00"
double d = Double.valueOf(s)