[Tutor] finding a non-letter?

Sean 'Shaleh' Perry shalehperry@attbi.com
Thu, 3 Oct 2002 01:20:05 -0700


On Thursday 03 October 2002 01:18, Magnus Lycka wrote:
>
> Sean's version says:
> Search through the string to see if you can find
> the following: Start of string followed by one or
> more numbers.
>
> The second version says:
> Look at the beginning of the string and see if
> we find a digit.
>

I find that I get bitten by re.match so I always use search instead.  Tha=
nks=20
for the clarification Magnus.