strrev

基本信息

原型:extern char *strrev(char *s);
用法:#include <string.h>
功能:把字元串s的所有字元的順序顛倒過來(不包括空字元NULL)。
說明:返回指向顛倒順序後的字元串指針
舉例:
// strrev.c
#include
#include
main()
{
char *s="Welcome To Beijing";
clrscr();
textmode(0x00); // 6 lines per screen
printf("%s\n%s",s,strrev(strdup(s)));
getchar();
return 0;
}
strrev(PHP 4, PHP 5)
strrev — Reverse a string

說明

string strrev ( string $string )
Returns string , reversed.

參數

string The string to be reversed.

返回值

Returns the reversed string.

範例

Example#1 Reversing a string with strrev()
strrev("Hello world!"); // outputs "!dlrow olleH"

相關詞條

相關搜尋

熱門詞條

聯絡我們