Forum Discussion
HKosova
Alumni
14 years agoHi Manoj,
How are you comparing the values? Are you using string comparison (==) or a property checkpoint (aqObject.CheckProperty)? Is the expected value hard-coded in your script, or are you reading it from an external data source? Please post here the script code you're using, so we can get a better insight into what's happening.
I've also tried to verify text with the "µ" character in Notepad, and it works just fine for me, without replacing anything:
Are you sure that the problem isn't caused by something else?
How are you comparing the values? Are you using string comparison (==) or a property checkpoint (aqObject.CheckProperty)? Is the expected value hard-coded in your script, or are you reading it from an external data source? Please post here the script code you're using, so we can get a better insight into what's happening.
I've also tried to verify text with the "µ" character in Notepad, and it works just fine for me, without replacing anything:
Sub Test
str = "<html>4...50%...< 1.5 µg/dL...> 1.5µg/dL...baseline....</html>"
Set memo = Sys.Process("Notepad").Window("Notepad").Window("Edit")
memo.SetText str
aqObject.CheckProperty memo, "wText", cmpEquals, str
End Sub
Are you sure that the problem isn't caused by something else?