Forum Discussion

Shrijith's avatar
Shrijith
New Contributor
3 years ago

Working with regular expressions in python

Hai Everyone, I have been working on regular expressions with python using Testcomplete.
Need a solution on how exactly we can find a particular text using OCR.
TEXT : "Number = 10 Value = Some Number"
So, This is the text that's getting displayed in the desktop application window. We have texts of the same kind but with different numbers and values which keeps changes.
But, I need to find if there exists a correct value which is correct for a particular number. If we can use
Value = OCR.Recognize(Object)
After that we can use Value.FullText
But, how we can find value for a particular number only.
Please help

5 Replies

    • Shrijith's avatar
      Shrijith
      New Contributor

      Himikef , Thanks for replying.

      There are series of values for a particular number

      Number =1 Value=12345.89

      Number=2 Value=34556.76

      These values change each time. So, wanted to validate the value for one of the numbers.

      Wanted to check how can we do it with regular expressions using python

      • mikef's avatar
        mikef
        Staff

        How are you validating the value, where is the expected value being referenced from?