Go Back   Webmaster Forums UK SEO SEM Webmaster Community Forum - UKWW > Web Design and Website Development > Programming > PHP Forum
Register FAQ Members List Downloads Calendar Today's Posts Webmaster Resources Webmaster Blogs
 
 

PHP Forum PHP related discussion, help, tips and tutorials.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 04-01-2008, 02:02 PM
dman_2007
Guest
 
Posts: n/a
Default Tip: accessing individual characters of a php string

If you would like to process individual characters of a string in php, you can access them by using following two methods :

Method 1

By using square bracket syntax and zero based offset. So for example, if you want to access second character of a string stored in variable $string_var, then use the expression $char_value = $string_var[2], now $char_value will contain a string 1 character long containing the required character.

PHP Code:
  $sample_string 'This is a sample string';
  for(
$i 0;$i strlen($sample_string);$i++)
  {
    
var_dump($sample_string[$i]);  
  } 
Method 2

By using substr function. We can use substr function to extract 1 character substrings successively within a for loop, hence accessing individual characters in string.

PHP Code:
  $sample_string 'This is a sample string';
  for(
$i 0;$i strlen($sample_string);$i++)
  {
    
var_dump(substr($sample_string$i1));
  } 
Digg this Post!Add Post to del.icio.usStumble this Post!Wong this Post!
Reply With Quote
Reply

Bookmarks



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Webmaster Resources
UK WW SEO Tools
Find UK Hosts
 
The Forum Rules
Forum Rules - MUST READ
 
Site Of the Month
BizzFace
Nominate site of the month
 
Tag Cloud
43. wholesale adsense ready apple iphone 16gb apple iphone 16gb 3g articles article writer australia web hosting beauty cash casino cheap clothes communications content custard media database dgital camerals domain name english teacher fantasy football fantasy football league fittness football league free handbags home income instant jewelry links link sale medical health money money making online music natural health news nokia n96 16gb one way links online online shop poker professor quality links replica sam allcock seo social networking sony vaio laptop sunglasses technology the medical plus themes tutor verbalized wallet wallets wanted web hosting widget ready wordpress xmas offer

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 08:40 AM.

UK Webmaster World Forums - Internet marketing, web development, domain names, SEO contest and discussuons.
Subscribe to our feeds   Subscribe to our feeds

Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0