
kumar
Novice
Jun 5, 2009, 12:53 AM
Post #1 of 5
(1111 views)
|
Which of the following values of $measure will make it into the correct measures section in the code below: P3, D7, DD, w1, IM, I9, I4, J1 if ($measure =~ /A[1-3]/ || $measure =~ /I[1-8]/ || $measure =~ /D[0-9]/ || $measure =~ /P[1-2]/ || $measure =~ /C[1-2]/ || $measure =~ /W[1-3]/ || $measure =~ /O[1-4]/) { # do something here; } Thanks in Advance
|