大约有 8,000 项符合查询结果(耗时:0.0114秒) [XML]

https://www.tsingfun.com/it/cpp/1821.html 

常用C函数的Unicode兼容函数(持续更新) - C/C++ - 清泛网 - 专注C/C++及内核技术

...rintfstrcat_tcscat(_tcscat_s)strcmpi 是stricmp的宏定义比较两个符串... C 函数 Unicode版本 fprintf _ftprintf access _taccess sprintf _stprintf strcat _tcscat(_tcscat_s) strcmpi 是 stricmp 的 宏定义 比较两个...
https://www.tsingfun.com/it/cpp/2033.html 

atol 头文件 - C/C++ - 清泛网 - 专注C/C++及内核技术

atol 头文件#include <stdlib>函数名:atol功能: 把符串转换成长整型数用法: longatol(const char *nptr);程序例:#include <stdlib.h> #includ...#include <stdlib.h> 函数名: atol 功 能: 把符串转换成长整型数 用 法: long atol(const char *nptr); 实例: ...
https://www.tsingfun.com/it/bigdata_ai/1800.html 

C# 操作MongoDb插入、更新、查询 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

C# 操作MongoDb插入、更新、查询Mongo连接符串形式:mongodb: 127.0.0.1:27017 插入或更新一条记录BsonDocument doc = new BsonDocument();...MongoServer serv...Mongo连接符串形式:mongodb://127.0.0.1:27017 // 插入或更新一条记录 BsonDocument doc = new Bso...
https://www.tsingfun.com/it/tech/1132.html 

php发送get、post请求的几种方法 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...l <?php $data = array ('foo' => 'bar'); //生成url-encode后的请求符串,将数组转换为符串 $data = http_build_query($data); $opts = array ( <span style="white-space:pre"> </span>'http' => array ( <span style="white-space:pre"> </span>'method' => 'POST', <span style="...
https://www.tsingfun.com/it/tech/1140.html 

通过API获取IP信息、IP归属地 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...pe":"","desc":""}; 注意:返回的结果不是一个标准的json格式符串,掐头去尾后进行json解析。 country:国家,province:省份,city:市,district:区县,isp:运营商。 新浪API接口:http://int.dpool.sina.com.cn/iplookup/iplookup.php?ip=218.192.3.4...
https://www.tsingfun.com/it/tech/1658.html 

C#连接有用户名密码验证的MongoDB - 更多技术 - 清泛网 - 专注C/C++及内核技术

C#连接有用户名密码验证的MongoDBMongoDB连接符串格式如下:mongodb: [username:password@]hostname[:port][ [database][?options]]使用MongoVUE输入用户名密码能够连接M...MongoDB连接符串格式如下:mongodb://[username:password@]hostname[:port][/[database][?option...
https://www.tsingfun.com/it/tech/1883.html 

.reg文件删除注册表项和值 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...除注册表项,请在 .reg 文件中的 RegistryPath 前放置一个连字符 (-)。例如,要从以下注册表项中删除 Test 子...要使用 .reg 文件删除注册表项,请在 .reg 文件中的 RegistryPath 前放置一个连字符 (-)。例如,要从以下注册表项中删除 Test ...
https://www.tsingfun.com/it/tech/1886.html 

正则表达式中的“或”逻辑 - 更多技术 - 清泛网 - 专注C/C++及内核技术

正则表达式中的“或”逻辑' | '连接两个符串即可。(注:| 是或者逻辑,如果是反向不包含,就会变成 且逻辑)' | '连接两个符串即可。 (注:| 是或者逻辑,如果是反向不包含,就会变成 且逻辑) a | b a 或 b ^(a | b)...
https://www.tsingfun.com/it/tech/1924.html 

mfc110d.dll!ATL::CSimpleStringT::~CSimpleStringT() 行 291 - 更多技术 -...

...中,被释放过(如 WritePrivateProfileString 函数,会对传入的符串进行释放),然后该类在析构时再次释放CString时发生如图的错误。 解决方法:对那些会释放符串的函数,调用时不要用成员变量传入,而应使用临时变量。 CS...
https://bbs.tsingfun.com/thread-80-1-1.html 

Mysql substr和Oracle substr区别 - 爬虫/数据库 - 清泛IT社区,为创新赋能!

Oracle substr(符串,开始索引、从0起,长度) Mysql substr或substring(符串,开始索引、从1起,长度)