[5] Parsing Guide for Openbullet 2 Extract values from List

Hello,
I see too few guides for Openbullet 2 on Youtube which is a shame this new version has great potential we will see how to extract values from list and how to convert between variable types including lists and we will also see how to search using loops.
That’s why I’m going to show you this simple guide.

At the end of his guides I hope you will be the Master of Parse.
We believe in …
Target : https://books.toscrape.com/

/*List <float> fast = new List<float>();
for(int i = 0; i < Prices.Count; i++)
{
    float convertion = float.Parse(Prices[i]); // Convert all values to float
    fast.Add(convertion);
}

float MaxPrices = 0;

for(int lol = 0; lol < fast.Count; lol++)
{
  if(fast[lol] >= MaxPrices)
  {
    MaxPrices = 0;
    MaxPrices += fast[lol];
  }

}
//Console.WriteLine();

string MaxPricesToStr = MaxPrices.ToString();


CLOG BlueGreen "The max highest price in this page is: " +"£"+ MaxPricesToStr*/

1 Like