> cmiiw... watch out for cfscript tho.... as far as I am aware cfscript
> doesn't support the multiple case features (ver5) and you need one for
> each item in your list ie

yes it does.

switch (_expression_) {
  case 'a':
  case 'b':
     stuff that happens when either a or b is the value;
     break;
  case 'c':
     c stuff;
     break;
  default:
     stuff;
     break;
}

-Patti


[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to