!teststring = '100 hours'
!sourcestring = 'abcdefghijklmnopqrstuvwxysz'
!matchfound = false
do !i from 1 to !sourcestring.Length()
If !teststring.match(!sourcestring.substring(!i,1)).gt(0) or !teststring.match(!sourcestring.substring(!i,1).upcase()).gt(0) then
!matchfound = true
break
endif
enddo
If !matchfound.eq(true) then
$P !teststring contains an alphabet!
else
$P !teststring doesn't contain an alphabet!
endif