Hi Avani, you can extract the numbers from these strings using Split function of String variable. In UiPath, first use Assign activity to assign the string "$6.97$6.97 $9.35$9. 35" to Price variable. Now use Price.Split({"$"}, StringSplitOptions.None)(1) to split the string and extract the first price value i.e. 6.97. Refer to the following screenshot to understand better: