strchr,wcschr 和strrchr, wcsrchr,_tcschr,_tcsrchr功能

(1)

char *strchr( const char *string, int c );
wchar_t *wcschr( const wchar_t *string, wchar_t c );
Find a character in a string.
查找一个字符串中首次出现的指定字符。
Return Value

Each of these functions returns a pointer to the first occurrence of c in string(address), or NULL if c is not found.

_tcschr是strchr或者wcschr,跟_UNICODE是否定义有关(2)
char *strrchr( const char
*string, int c);
char *wcsrchr( const wchar_t *string, int c );

Scan a string for the last occurrence of a character.

查找一个字符串中最后出现的指定字符。
Return Value

Each of these functions returns a pointer to the last occurrence of c in string(address), or NULL if c is not found.
找出字符串中最后一个出现查找字符的地址,然后将该字符出现的地址返回。

_tcsrchr这是strrchr或wcsrchr,同_UNICODE是否定义

最新文章

  1. Js中强大的Promise异步机制
  2. POJ 2421(prim)
  3. python输出excel能够识别的utf-8格式csv文件
  4. HttpController的激活
  5. Spring(二)Bean入门
  6. javascript首尾反转字符
  7. Json Serialize 忽略特定属性
  8. 黑马程序员—— Java SE(3)
  9. git clone cm source & cm vs android version
  10. PageRank算法第一篇
  11. iOS开发——UIImageView
  12. sql替换
  13. Dubbo原理和源码解析之服务引用
  14. C#读写EXCEL单元格的问题
  15. 【codeforces 765F】Souvenirs
  16. cocos dos命令
  17. Gradle构建多模块项目
  18. mysql 计算两点经纬度之间的距离含具体sql语句
  19. STL算法之函数copy
  20. js求时间差,两个日期月份差

热门文章

  1. 执行Asp.net应用程序在Linux上的3种托管方式
  2. 图片本地预览 flash html5
  3. 【MongoDB】The description of index(一)
  4. Oracle 调用存储过程执行CRUD的小DEMO
  5. Python数据结构之注意事项
  6. ural1018(树形dp)
  7. URAL 1297 后缀数组:求最长回文子串
  8. (40)JS运动之右下角悬浮框
  9. hdu 2051 Bitset (java)
  10. Cacti监控Tomcatserver实现过程