如何在 MATLAB 中连接字符串
我尝试执行以下操作: fname = strcat('C:\Users\user_name\work\video\',avi_name); videoObject = VideoReader(fname); 我收到一条错误消息: Argum…
strcpy 和 strcat 有时会出现问题
你好,我有一个像下面这样的代码 char *str ; strcpy(str, "\t<"); strcat(str, time); strcat(str, ">["); strcat(str, user); strcat(str, "]"); st…
使用 crt 在线性时间内连接 C 字符串
假设我们想要将 const char *s[0], s[1], ... s[n-1] 连接成 C 中的一个 long char out[]。 ): void concatManyStrings(char out[], const char *s[…
如何将 char 连接到常量 char*?
我有一个函数连接两个常量 char* 并返回结果。我想做的是将 char 连接到常量 char* 例如 char *command = "nest"; char *halloween = join("hallowee"…
strcat 古怪的行为
我编写了这个简单的 C 程序,但不太明白 strcat long sum(long col, char* path, char* path2){ printf("%s\n",path2); strcat(path,".endlines"); pr…
Matlab字符到字符串的转换问题。使用什么功能?
x = 1234 56789 7654 x(1) 是 1,x(2) 是 2 等等...中间有 5 个空格.. 尺寸(x) = 1 23 1行23列 我尝试过使用 num2str、strcat 但我无法合并数字。 y =…
如何在 C 编程中 strcat OPENFILENAME 参数
我有一个使用 OPENFILENAME 的工作代码。我可以知道如何使用 strcat 动态控制其参数吗? 这个正在工作 //ofn.lpstrFilter = "Rule Files (*.net and *…
字符串在没有赋值的情况下连接到另一个字符串,这是为什么?
下面是程序中的一个函数: //read the specified file and check for the input ssn int readfile(FILE *fptr, PERSON **rptr){ int v=0, i, j; char …
连接字符串后出现 Malloc() 内存损坏错误
伙计们,我正在生成一个字符串,它表示文件的路径,连接宏和字符串。函数是这样的: char *userPath(char *username) { char *path = (char*)malloc(s…
为什么是“strcat”?被认为“不安全”?
可能的重复: 为什么 MSVC++ 认为“std::strcat”“不安全” ”? (C++) 这是我的代码: char sentence[ 100 ] = ""; char *article[ 5 ] = { "the…
const char * 与 const wchar_t* (串联)
这是最好的连接方式? const char * s1= "\nInit() failed: "; const char * s2 = "\n"; char buf[100]; strcpy(buf, s1); strcat(buf, initError); s…
如何将 strcat 与 ENUM 一起使用?
我有一个外部工具,它根据用户输入生成 ENUM。现在我的 C++ 代码正在使用这个 ENUM,其中我必须根据变量“x”选择特定的 ENUM。生成的 ENUM 的形式为…
C:一种更安全的方法来检查函数中的缓冲区并附加到它?
我有一个函数,我需要返回另一个日志函数的时间,它看起来像这样: //put time in to buf, format 00:00:00\0 void gettimestr(char buf[9]) { if(str…