Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
adiarnon
Creator III
Creator III

wildmatch

hi,

i need to know if the character '*' exist in a string

how i write the wildmatch expression?

Labels (1)
3 Replies
poluvidyasagar
Creator II
Creator II

Can you share some data.

sunny_talwar
MVP
MVP

May be this

=If(SubStringCount('shdsbd*mdfhs', Chr(42)) > 0 , 1, 0)

sunny_talwar
MVP
MVP

Or this

=If(SubStringCount('shdsbd*mdfhs', '*') > 0 , 1, 0)