cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

There is a way to use regulal expression on Design Studio scripts for filtering text from a dropdwon menu like:

if (element.text != "DO*" ){

   //do something

}

Thanks

Marco

0 Likes
View Entire Topic
MustafaBensan
SAP Champion
SAP Champion

Hi Marco,

You can't apply wildcards as per your example. However, you could simulate this using the indexOf() method to search for the existence of a substring within a string. For example:

if (element.text.indexOf("DO")) = -1 ){

   //do something

}

Regards,

Mustafa.