strxfrm() - C語言庫函式


C庫函式 size_t strxfrm(char *dest, const char *src, size_t n) 將前n個字元的字串src到校報的語言環境和把它們串dest。

宣告

以下是strxfrm() 函式的宣告。

size_t strxfrm(char *dest, const char *src, size_t n)

引數

  • dest -- 這就是指標的內容將被複製到目標陣列。它可以是一個空指標,如果引數n是零。

  • src -- 這是C字串轉化為當前語言環境。

  • n -- 被複製到str1的最大字元數。

返回值

這個函式返回轉換後的字串的長度,不包括終止空字元。

例子

下面的例子顯示strxfrm() 函式的用法。

#include <stdio.h>
#include <string.h>

int main()
{
   char dest[20];
   char src[20];
   int len;

   strcpy(src, "Tutorials Yiibai");
   len = strxfrm(dest, src, 20);

   printf("Length of string |%s| is: |%d|", dest, len);
   
   return(0);
}

讓我們編譯和執行上面的程式,這將產生以下結果:

Length of string |Tutorials Yiibai| is: |15|