Assuming the HTML is in a string variable called str:
int startingLocation = str.IndexOf("United States Dollar");
string amount = str.Substring(startingLocation - 10).Trim();
This only works if the string behind the text is 10 characters, which in your example it is. IndexOf() returns the index of the first occurrence of the specified string. Trim() removes unnecessary whitespace.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…