Forum Discussion

TestingHobo's avatar
TestingHobo
Contributor
8 years ago
Solved

Escaping ? character in FindAllChildren

Anyone know if its possible to use FindAllChildren where the value you are looking for is a ? I've tried using \? to escape the character but that doesn't work.     var property = ["WPFControlT...
  • HKosova's avatar
    8 years ago

    * can be escaped as **, but there's no escape sequence for ?.

     

    You'll need to search by some other value, or manually loop through the objects and compare WPFControlText with "?".