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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
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)