Raised This Month: $51 Target: $400
 12% 

Combine 2 strings


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Mlk27
Veteran Member
Join Date: May 2008
Old 10-23-2008 , 20:49   Combine 2 strings
Reply With Quote #1

how do we combine 2 strings? eg

new banmessage = "ban" + "test" or

new banmessage = "ban" && "test"

thanks
Mlk27 is offline
Prajch
Senior Member
Join Date: Dec 2007
Location: anger++
Old 10-23-2008 , 21:13   Re: Combine 2 strings
Reply With Quote #2

PHP Code:
static string1[32], string2[32], buffer[64]
//...
strcat(bufferstring1sizeof buffer -1)
strcat(bufferstring2sizeof buffer -1
or

PHP Code:
static string1[32], string2[32], buffer[64]
//...
formatex(buffersizeof buffer -1"%s%s"string1string2
You could also use add() or copy().
Prajch is offline
PrEn1umz
Junior Member
Join Date: Feb 2007
Location: Nice, France
Old 10-25-2008 , 13:44   Re: Combine 2 strings
Reply With Quote #3

you can also use format

PHP Code:
new str_1[32], str_2[32], str[64];

format(str63"%s %s"str_1str_2); 
PrEn1umz is offline
danielkza
AMX Mod X Plugin Approver
Join Date: May 2007
Location: São Paulo - Brasil
Old 10-25-2008 , 13:54   Re: Combine 2 strings
Reply With Quote #4

Quote:
Originally Posted by PrEn1umz View Post
you can also use format

PHP Code:
new str_1[32], str_2[32], str[64];

format(str63"%s %s"str_1str_2); 
You should use formatex whenever you don't use the result string in the format sentence, saving a copyback and making it faster.
__________________

Community / No support through PM
danielkza is offline
anakin_cstrike
Veteran Member
Join Date: Nov 2007
Location: Romania
Old 10-25-2008 , 14:50   Re: Combine 2 strings
Reply With Quote #5

PHP Code:
new szString1[11] = "ban";
new 
szString2[11] = " test";

add(szString1,11,10,szString2);

server_print("Full string: %s",szString1); 
__________________

anakin_cstrike is offline
Reply



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

Forum Jump


All times are GMT -4. The time now is 18:08.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode