Thread Closed

explode

 
Share Thread Thread Tools
Nov29-04, 09:15 PM   #1
 

explode


can someone code me the php explode function into c or c++ that would work with original strings?
thanks in advance
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Bird's playlist could signal mental strengths and weaknesses
>> Minus environment, patterns still emerge: Computational study tracks E. coli cells' regulatory mechanisms
>> Bacterium uses natural 'thermometer' to trigger diarrheal disease, scientists find
Nov30-04, 07:16 AM   #2
 
Recognitions:
Retired Staff Staff Emeritus
Um, there isn't anything to do if you use the C-style strings since it is already in array format. For example:

char *str = "hello";

printf("%c",str[0]) /*Would print out an h*/
printf("%c",str[1]) /*Would print out an e*/

Same thing applies to the C++ STL strings. The class actually overloads the [] operator so you can access the string just like an array.
Thread Closed
Thread Tools


Similar Threads for: explode
Thread Forum Replies
Why don't stars explode? What holds them together? Astrophysics 32
Why don't untapped maple trees explode? Math & Science Software 13
What would cause a black hole to explode? General Astronomy 5
Why do Some Stars Explode ??? General Physics 8
How to tell if your head is about to explode...??? Biology 9