strlen:獲取字串的長度
char str[20]="容我想想";
int len;
len = strlen(str);
lr_output_message("str的長度=%d",len);
action.c(9): str的長度=8
strupr:將小寫字母轉化為大寫字母
char str[20] ="welcome to the hploadrunneronline function reference";
char *str1 = null;
str1 = (char *)strupr(str);
lr_output_message("str的內容轉化為大寫為%s",str1);
strlwr:將小寫字母轉化為大寫字母
char str[20] ="rongwoxiangxiang";
char *str1 = null;
lr_output_message("str的內容轉化為小寫為%s",strlwr(str));
strrchr:在字串中查詢指定字元最後一次出現
char *str="welcome to the hp loadrunner online function reference";
char *str1;
str1 = (char *)strrchr(str,'c');
lr_output_message("c 最後一次出現時在%s",str1);
strchr:在字串中查詢字元第一次出現
char *str="welcome to the hp loadrunner online function reference";
char *str1;
str1 = (char *)strchr(str,'c');
lr_output_message("c第一次出現是在%s",str1);
strncpy:拷貝指定長度的字串
char str[100]="容我想想老師之效能測試系列培訓課程";
char str1[100];
strncpy(str1,str,8);
lr_output_message("str的值為%s",str1);
strcpy:拷貝字串
char str[100]="容我想想老師之效能測試系列培訓課程";
char str1[100];
strcpy(str1,str);
lr_output_message("str的值為%s",str1);
strnicmp:不區分大小寫比較指定長度的字串
char str[100] ="welcome to the hp loadrunner online function reference";
char str1[100]="welcome to the hp loadrunner online function reference";
int num;
num = strnicmp(str,str1,10);
if(num == 0)
lr_output_message("str == str1");
else if(num > 0)
lr_output_message("str > str1");
else if(num < 0)
lr_output_message("str < str1");
stricmp:不區分大小寫比較字串
char str[100] ="welcome to the hp loadrunner online function reference";
char str1[100]="welcome to the hp loadrunner online function reference";
int num;
num = stricmp(str,str1);
if(num == 0)
lr_output_message("str == str1");
else if(num > 0)
lr_output_message("str > str1");
else if(num < 0)
lr_output_message("str < str1");
strncmp:比較指定長度字串
char str[100] = "welcome to the hp loadrunner online function reference";
char str1[100]= "welcome to the hp loadrunner online function reference";
int num;
num = strncmp(str,str1,8);
if(num == 0)
lr_output_message("str == str1");
else if(num > 0)
lr_output_message("str > str1");
else if(num < 0)
lr_output_message("str < str1");
strncmp:字串比較
char str[100] = "welcome to the hp loadrunner online function reference";
char str1[100]= "welcome to the hp loadrunner online function reference";
int num;
num = strcmp(str,str1);
if(num == 0)
lr_output_message("str == str1");
else if(num > 0)
lr_output_message("str > str1");
else if(num < 0)
lr_output_message("str < str1");
strcat:拼接字串
char str[100]="容我想想";
char str1[100]="老師之效能測試系列培訓課程";
char *str2;
str2 = (char *)strcat(str,str1);
lr_output_message("str1的值為%s",str2);
strncat:拼接指定長度字元換
char str[100]="容我想想";
char str1[100]="老師之效能測試系列培訓課程";
char *str2;
str2 = (char *)strncat(str,str1,22);
lr_output_message("str1的值為%s",str2);
memcpy:拷貝指定長度的字串
char str[100]="容我想想老師之效能測試系列培訓課程";
char str1[100]="";
memcpy(str1,str,30);
lr_output_message("str1的值為%s",str1);
memcmp:比較指定長度的字串
char str[100]="容我想想老師之效能測試系列培訓課程test";
char str1[100]="容我想想老師之效能測試系列培訓課程";
int num;
num = memcmp(str1,str,34);
if(num == 0)
lr_output_message("str == str1");
else if(num > 0)
lr_output_message("str > str1");
else if(num < 0)
lr_output_message("str < str1");
loadrunner中編寫C語言
求出這個數列的前20項之和 定義乙個函式,實現對字串做如下操作 當字元為字母時,大小寫互換,當字元為數字時,原樣輸出,當有其它字元出現時,結束操作,返回已處理的字串。當我們通過關聯,會得到如下的字串 tid 231 fid 322 其中tid的值有可能是三位數,也有可能是2位數,不能確定,請編寫乙個...
loadrunner的常用函式
一 基礎函式 在vu左邊導航欄中,有三個lr框架函式,分別是vuser init action vuser end 這三個函式存在與任何vuser型別的指令碼中。vuser init 虛擬使用者的初始化函式,存放使用者初始化操作,如登入 分配記憶體等。只執行一次 action 虛擬使用者要做的業務,...
LoadRunner常用函式(1)
loadrunner常用函式 1 eg lr output message 解密後資料為 s lr decrypt 4d9d6013dcbe726b output 解密後資料為isis eg char a,logfile 500 dir seperator long file putenv logf...