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, 03: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
affiliates ambitious asbestos cancer bid bidding directory bid directory bid directory list bid for position business clothes contest cricket writer delisted designer discount ecommerce email list email marketing finance forum free web hosting free website hosting global business directory google handbags huge email database internet and marketing jewelry link submissions niche of mesothelioma paid blogging phones electronics php file value pr7 directory replica social bookmark startup sunglasses technology uk property writer wallets web web design web development website website for sale website promotion websites for sale wholesale yahoo backlink

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 04:11 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