Quote:
Originally Posted by TheKidz
can you make an example of parse() with your example ? =S
|
PHP Code:
new szTest[] = "hello my friend";
new szHello[ 6 ] , szMy[ 3 ] , szFriend[ 7 ];
parse( szTest , szHello , charsmax( szHello ) , szMy , charsmax( szMy ) , szFriend , charsmax( szFriend ) );
//Each variable now holds each respective word.
//Or
new szTest[] = "^"hello my^" friend";
new szHelloMy[ 9 ] , szFriend[ 7 ];
parse( szTest , szHelloMy , charsmax( szHelloMy ) , szFriend , charsmax( szFriend ) );
__________________