Find configuration name

Hello,

I want to find a default configuration with vba, but the name can also contain other characters, for example

"[default] postition flexible"

How can I search the configuration which contains "*default*" . "*default*" doesn't work... :

'ACTIVEER [DEFAULT]
Set swApp = Application.SldWorks
Set Part = swApp.ActiveDoc
DefaultName = "*" & "Default" & "*"
boolstatus = Part.ShowConfiguration2("DefaultName")

SolidworksApi/macros