kroe761
10 years agoContributor
Actually find an asterisk using the Find() method? Not use it as a wildcard?
I am testing some software that adds entries to a table. I need to find and delete all entries marked as "*". Problem is, If I do something like this
props = ["ObjectType","innerText"]
values = ["Cell","*"]
cell = table.Find(props, values, 1000)
The * searches everything. I need to actually find the asterisk. How can I do that? I tried doing "\*" but that didn't work. That is the extent of my regex abilities. Thanks!
props = ["ObjectType","innerText"]
values = ["Cell","*"]
cell = table.Find(props, values, 1000)
The * searches everything. I need to actually find the asterisk. How can I do that? I tried doing "\*" but that didn't work. That is the extent of my regex abilities. Thanks!
- Try double **
values = ["Cell","**"]