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

https://www.tsingfun.com/it/tech/1885.html 

正则表达式匹配不包含某些符串的写法 - 更多技术 - 清泛网 - 专注C/C++及内核技术

正则表达式匹配不包含某些符串的写法经常我们会遇到想找出不包含某个符串的文本,程序员最容易想到的是在正则表达式里使用,^(hede)来过滤hede字串,但这种写法是错误的。我...经常我们会遇到想找出不包含某个符串...
https://bbs.tsingfun.com/thread-1686-1-1.html 

App Inventor 2 Encrypt.Security 安全性扩展:MD5哈希,SHA/AES/RSA/BASE6...

...RSA私钥和RSA公钥。方法BASE64Encode此方法用于BASE64编码一个符串。输入 plaintextBASE64Decode此方法用于BASE64解码符串。输入 ciphertextGenerateRsaKeyPair此方法用于生成一对RSA加密/解密密钥(including a private key and a public key),输入密钥...
https://www.tsingfun.com/it/cpp/1209.html 

MFC CString::Format()函数详解 - C/C++ - 清泛网 - 专注C/C++及内核技术

...数详解我在编写程序时经常会使用CString::Format()来格式化符串!但往往只是使用了Format很少一部分功能,比如整型转换成符串!不过今天我想...我在编写程序时经常会使用CString::Format()来格式化符串!但往往只是使用了Forma...
https://www.fun123.cn/referenc... 

App Inventor 2 Encrypt.Security 安全性扩展:MD5哈希,SHA1和SHA256哈希...

...和RSA公钥。 方法 BASE64Encode 此方法用于BASE64编码一个符串。输入 plaintext BASE64Decode 此方法用于BASE64解码符串。输入 ciphertext GenerateRsaKeyPair 此方法用于生成一对RSA加密/解密密钥(including a private key and a public key),...
https://www.tsingfun.com/it/cpp/1210.html 

[精华] VC中BSTR、Char和CString类型的转换 - C/C++ - 清泛网 - 专注C/C++及内核技术

...ANSI字符。 方法二,使用“_T”将ANSI转换成“一般”类型符串,使用“L”将ANSI转换成Unicode,而在托管C++环境中还可使用S将ANSI符串转换成String*对象。例如: TCHAR tstr[] = _T("this is a test"); wchar_t wszStr[] = L"This is a test"; ...
https://www.tsingfun.com/it/bigdata_ai/337.html 

数据挖掘——分词入门 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

...d("中华人民共和国"); int strLen = str.length(); //传入符串的长度 int j = 0; String matchWord = ""; //根据词库里识别出来的词 int matchPos = 0; //根据词库里识别出来词后当前句子中的位置 while (j < strLen) { ...
https://www.tsingfun.com/it/da... 

mysql实现split分割符串(length, SUBSTRING_INDEX, substring) - 数据...

mysql实现split分割符串(length, SUBSTRING_INDEX, substring)由于MySql没有直接的split函数,只提供了length, SUBSTRING_INDEX, substring三个函数,这里介绍如何用这三个函数实现split功能。# SUBS...由于MySql没有直接的split函数,只提供了length, SUB...
https://www.tsingfun.com/it/cpp/1511.html 

std::string的截取符串的方法 - C/C++ - 清泛网 - 专注C/C++及内核技术

std::string的截取符串的方法例如截取ip:port,代码如下:std::string ip("127.0.0.1:8888");int index = ip.find_last_of(':'); ipip.substr(0, index)....例如截取ip:port,代码如下: std::string ip("127.0.0.1:8888"); int index = ip.find_last_of(':'); //ip ip.substr(0, in...
https://www.tsingfun.com/it/cpp/1622.html 

CString的截取符串,截取ip:port - C/C++ - 清泛网 - 专注C/C++及内核技术

CString的截取符串,截取ip:portCString截取ip:port,代码如下:CString strIpPort = "127.0.0.1:8888";CString strIp, strPort;int index = strIpPort.Find('...CString截取ip:port,代码如下: CString strIpPort = "127.0.0.1:8888"; CString strIp, strPort; int index = strIpPort.Fi...
https://bbs.tsingfun.com/thread-351-1-1.html 

mysql实现split分割符串(length, SUBSTRING_INDEX, substring) - 爬虫/...

...函数实现split功能。 # SUBSTRING_INDEX(str, delim, count):返回符串 str 中在第 count 个出现的分隔符 delim 之前的子串。如果 count 是一个正数,返回从最后的(从左边开始计数)分隔符到左边所有字符。如果 count 是负数,返回从最后的(...