empty string and patterns

Does it make sense that this expression would return F?

  if ( /.*/ in "" )

but then this one returns T:

  if ( /^.*$/ in "" )

  .Seth

Seems both should return True ...

Robin

> if ( /.*/ in "" )
> if ( /^.*$/ in "" )

Seems both should return True ...

Agreed. I'm surprised the first doesn't.

    Vern