找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
热搜: 活动 交友 discuz
查看: 102|回复: 2

[已解决] 易语言核心模块分割文本函数报错

[复制链接]

13

主题

18

回帖

167

积分

注册会员

积分
167
QQ
发表于 2025-1-22 23:50:33 | 显示全部楼层 |阅读模式
新版基础模块的 text_split2A和 text_split2返回文本型数组,易语言核心模块使用这两个函数时传了3个参数,导致不匹配


修改部分


string.cpp:
80-90行
//分割文本A
CXVector<CXTextA> X_String_SplitWithStlA(CXTextA str, CXTextA pattern)
{
        return text_split2A(str, pattern);
}
//分割文本W
CXVector<CXText> X_String_SplitWithStl(CXText str, CXText pattern)
{
        return text_split2(str, pattern);
}


moudle_yyy.cpp:
1089-1093行


CXVector<CXText> 分割文本(const wchar_t* pText, const wchar_t* pSplit)
{
        return text_split2(pText, pSplit);
}

4

主题

7

回帖

196

积分

注册会员

积分
196
发表于 7 天前 | 显示全部楼层



这个简单,找到对应的错误行,自己改就行了

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×

66

主题

277

回帖

1263

积分

管理员

积分
1263
发表于 4 天前 | 显示全部楼层
已处理
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|炫语言 | 炫彩界面库 | 用户所需, 正是我所做! ( 鄂ICP备2023014763号-1 )

GMT+8, 2025-1-31 01:24 , Processed in 0.072271 second(s), 21 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表