<@U018LA3KZCJ> The findInst returns NULL but I cou...
# openroad
p
@Matt Liberty The findInst returns NULL but I could see the cell is placed. Why is findInst returning NULL?
a
I think you need extra escape characters here in order to actually match the string. Try
Copy code
$block findInst pt_array_unit\\\[22\\\]
🙌 1
Also this might work:
Copy code
$block findInst {pt_array_unit\[22\]}
p
@Austin Rovinski Hey!! $block findInst pt_array_unit\\\[22\\\] worked. Thanks.