I'm trying to speed up debugging. In a large trace I'm search for particular values of a signal. Im using QuestaSim 10.0b under linux.
I already found out that can be done in Modelsim/QuestaSim with the following command
searchlog -expr { stream == 'h20 } 0
Unfortunately this also matches the signal 'stream' when it has the value 'XX', but I only want it to match 0x20. How can I make sure it only matches the hex value, but not the undefined value?