Forum Discussion
nnzaid_67752
Nov 14, 2011Nimbostratus
syntax for matches_glob
Hi, having syntax problems with matches_glob function. I have this, which works: if { $agent matches_glob "*android 2.1*" } { do something }, what I want to do is implement an OR type operator on a st...
hooleylist
Nov 15, 2011Cirrostratus
Hi nnzaid,
The second syntax you have would work. But you can use a switch statement instead:
when HTTP_REQUEST {
switch [string tolower [HTTP::header User-Agent]] {
"*android 2.*" -
"*os 1.0*" {
Do something
}
default {
Do something else
}
}
}
Aaron
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects