Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
omiaye
Contributor II
Contributor II

WildMatch with two **


I am new to qliksense. Please what will '124.9**' in this expression WildMatch(InputName,'124.9**', '345.2*', '978.2*') match? I understand one * but two ** is confusing to me. Thank for the anticipated help.

 

Labels (2)
4 Solutions

Accepted Solutions
vinieme12
Champion III
Champion III

the double asterisk ** doesn't change anything; this could just be a typo

'124.9**'  would  return same results as this '124.9*'

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

anat
Master
Master

Ahidhar
Creator III
Creator III

In a wildmatch  (**)  makes no difference but while searching in folders it does .

View solution in original post

Chanty4u
MVP
MVP

double asterisks (**) in the pattern '124.9**' act as a single asterisk since the first asterisk is treated as a literal character and the second one acts as the wildcard. So, this pattern would match strings like '124.91', '124.912', '124.9123', and so on.

View solution in original post

5 Replies
vinieme12
Champion III
Champion III

the double asterisk ** doesn't change anything; this could just be a typo

'124.9**'  would  return same results as this '124.9*'

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
anat
Master
Master

* matches any sequence of characters in wildmatch

as  Vinieme12 said seems it typo mistake.

https://help.qlik.com/en-US/sense/November2023/Subsystems/Hub/Content/Sense_Hub/Scripting/Conditiona...

 

Ahidhar
Creator III
Creator III

In a wildmatch  (**)  makes no difference but while searching in folders it does .

Chanty4u
MVP
MVP

double asterisks (**) in the pattern '124.9**' act as a single asterisk since the first asterisk is treated as a literal character and the second one acts as the wildcard. So, this pattern would match strings like '124.91', '124.912', '124.9123', and so on.

omiaye
Contributor II
Contributor II
Author

Thanks everyone for your input, I greatly appreciate it.

@Chanty4u,

You brought up an interesting perspective, please what do you mean by first asterisk is treated as a  literal character?