Pulsonix User Forum

Technical advice from Pulsonix engineers and the wider community.

 All Forums
 Help with using Pulsonix
 General
 Combining of wildcards

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkInsert EmailInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON

   Upload a file

Check here to subscribe to this topic.
   

T O P I C    R E V I E W
HarryHirn Posted - 10 Nov 2023 : 13:47:41
Hi,

i tried to combine some wildcards but was not able to find the solution.

From the help i found all the wildcard characters but unfortunately i was not able to create a matching rule i wanted to.

Assume i have several signals like
SPI_MOSI
SPI_MISO
SPI_CLK
SPI_CLK_MASTER
SPI_CLK_SLAVE

I would like to apply one rule to all the SPI signals except the MASTER and SLAVE stubs.

Wildcards:
String begins with: SPI_
SPI_*

String does not end with MASTER
%^*MASTER


Combining these two like

SPI_*%^*MASTER

does not work.


Can wildcards be connected like that?
Is there an AND operator?

TY
2   L A T E S T    R E P L I E S    (Newest First)
HarryHirn Posted - 14 Nov 2023 : 07:16:38
hi feynman,

this works!

thank you!
feynman Posted - 13 Nov 2023 : 12:21:06
Hi,

maybe have a try with SPI_%^%{*MASTER|*SLAVE%}

That expression should match strings starting with "SPI_" and not ending with "MASTER" or "SLAVE".

Regards,
feynman