请问如何连接2个字符串?
我想在用户的名字前面加个标识,例如名字是Player想在前面加上变成Player,不知道应该用什么函数来实现,到官方查了下有个函数是strcat ( dest[], const source[], maxlength )
不知道怎么用,能给个例子吗?
回复: 请问如何连接2个字符串?
#include <amxmodx>#include <string>
public abc(id)
{
new n
new sh
sh=""
get_user_name(id,n,32)
strcat(sh,n,32)
client_print(0,print_chat,"%s",sh)
return PLUGIN_HANDLED
}
public plugin_init()
{
register_plugin("111","1.0","FoX")
register_clcmd("l", "abc")
}
回复: 请问如何连接2个字符串?
比如说strcat(sh,n,32)是把n接到sh后面去,32是限制最大长度
回复: 请问如何连接2个字符串?
应该是这个道理,但是看了官方的函数解释那个dest和source看得我莫名其妙
页:
[1]