Extract value from a string

Hi,

I have a string “HC:99284 $560.00 – - $501.66 $58.34 – $58.34”,
I need to extract the highlighted value from the string.
Please help!

@Pooja1
You can slice the initial string, based on “–”, returning an array of strings.

Following this, you can acquire the final position in the array (array.length - 1).

Main.xaml (6.5 KB)

1 Like

Hey thanks! it works!! :slight_smile: