c++使用wstring拆分unicode分隔字符串

C++ splitting unicode delimited string using wstring

本文关键字:分隔 字符串 unicode 拆分 使用 wstring c++      更新时间:2023-10-16

我试图完成主题任务,但我的代码不分裂。下面是主要函数:

#define SQL_TEXT Latin_Text
#include <iostream>
#define SQL_TEXT Latin_Text
#include <sqltypes_td.h>
#include "Split.h"
#include <string>
#include <stdio.h>
#include <vector>
#include <cstring>
using namespace std;
int main ()
{
    VARCHAR_LATIN *result = new VARCHAR_LATIN[512];
    wchar_t *s1 = (wchar_t *)"Myýnameýisýzeeshan";
    **splitstringwc s(s1);
vector<wstring> flds = s.splitwc((wchar_t)'ý');**
    wstring rs = flds[1];
    wcout<<rs<<endl;
for (int k = 0; k < flds.size(); k++)
        cout << k << " => " << flds[k].data() << endl;
    cout<<result;
    return 0;
}
splitstringwc类的代码如下:
public:
splitstringwc(wchar_t *s) : wstring(s) { };
vector<wstring>& splitwc(wchar_t delim, int rep=0);
};

vector<wstring>& splitstringwc::splitwc(wchar_t delim, int rep) {
if (!flds1.empty()) flds1.clear();  // empty vector if necessary
wstring ws = data();
wcout<<ws<<endl;
//wcout<<delim<<endl;
//wstring ws;
//int j = StringToWString(ws, work);
wstring buf = (wchar_t *)"";
int i = 0;
while (i < ws.size()) {
    if (ws.at(i) != delim)
        buf += ws.at(i);
    else if (rep == 1) {
        flds1.push_back(buf);
        buf = (wchar_t *)"";
    } else if (buf.size() > 0) {
        flds1.push_back(buf);
        buf = (wchar_t *)"";
    }
    i++;
}
if (!buf.empty())
    flds1.push_back(buf);
return flds1;

}

代码没有分割输入字符串,当我尝试调试时,我得到分割错误:wstring ws = data();

请帮助 ...............

使用strtok而不是我自己的split函数,是基于unicode分隔符拆分字符串。

代码如下:

str = "Myýnameýisýzeeshan";
char *pch;
pch = strtok(str, "ý");
while (pch != NULL)
{
    printf("%sn", pch);
    pch = strtok(NULL, "ý");
}

请注意,str由UNICODE分隔符分隔的ANSI字符串组成。

在处理宽字符字符串时不能使用普通字符串和字符字面量。它们也必须是宽字符,比如

const wchar_t *s1 = L"Myýnameýisýzeeshan";

注意字面值前面的L,这使得字符串成为宽字符字符串。

同样用于字符字面量:

s.splitwc(L'ý')