--- DeXteR <[EMAIL PROTECTED]> wrote:
> Like we have string $blah = "abcdef" and i wand for example character
> 5,  the "e", to mess around with further. How should i do that?

I'd probably say

  substr($blah,4,1)

( though you could do something wierd like
  
  (split '', $blah)[4]

if you wanted to, lol....)

__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/

Reply via email to