gpt4 book ai didi

c++ - 帮助在 C++ 中使用 PCRE

转载 作者:可可西里 更新时间:2023-11-01 11:14:39 27 4
gpt4 key购买 nike

这是我第一次尝试构建 C++ 应用程序,所以我有点迷茫。我看过一些例子,但我仍然不知道哪里出了问题。

#include <iostream>
#include <stdio.h>
#include <windows.h>
#include <pcrecpp.h>
#include <string>
#include <cstring>

using namespace std;

int main()
{
char title[256];
char url[256];
string song, diff;
HWND hwnd = FindWindow("WindowsForms10.Window.8.app.0.33c0d9d", NULL);
GetWindowTextA(hwnd, title, 255);
pcrecpp::RE re("^osu! - (.*) \\[(.*)\\] \\[[|-]{21}\\]$");
re.FullMatch(title, &song, &diff);
sprintf(url, "xfire:game_stats?game=%s&%s=%s&%s=%s", "osu", "Playing", song.c_str(), "Difficulty", diff.c_str());
ShellExecute(NULL, NULL, url, NULL, NULL, SW_SHOWDEFAULT);
return 0;
}

当我尝试编译时,出现以下编译器错误

obj\Debug\main.o||在“main”函数中:|
C:\Users\Zeffy\Desktop\osu-gamestats\main.cpp|18|对“_imp___ZN7pcrecpp2RE6no_argE”的 undefined reference |
C:\Users\Zeffy\Desktop\osu-gamestats\main.cpp|18|对“_imp___ZN7pcrecpp2RE6no_argE”的 undefined reference |
C:\Users\Zeffy\Desktop\osu-gamestats\main.cpp|18|对“_imp___ZN7pcrecpp2RE6no_argE”的 undefined reference |
C:\Users\Zeffy\Desktop\osu-gamestats\main.cpp|18|对“_imp___ZN7pcrecpp2RE6no_argE”的 undefined reference |
C:\Users\Zeffy\Desktop\osu-gamestats\main.cpp|18|对“_imp___ZN7pcrecpp2RE6no_argE”的 undefined reference |
obj\Debug\main.o:C:\Users\Zeffy\Desktop\osu-gamestats\main.cpp|18|更多未定义的引用 '_imp___ZN7pcrecpp2RE6no_argE' follow|
obj\Debug\main.o||在“main”函数中:|
C:\Users\Zeffy\Desktop\osu-gamestats\main.cpp|18| undefined reference '_imp___ZNK7pcrecpp2RE9FullMatchERKNS_11StringPieceERKNS_3ArgES6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_S6_'|
C:\Users\Zeffy\Desktop\osu-gamestats\main.cpp|17|对“_imp___ZN7pcrecpp2RED1Ev”的 undefined reference |
C:\Users\Zeffy\Desktop\osu-gamestats\main.cpp|17|对“_imp___ZN7pcrecpp2RED1Ev”的 undefined reference |
obj\Debug\main.o||在函数“Arg”中:|
C:\MinGW\msys\1.0\local\include\pcrecpparg.h|89|对“_imp___ZN7pcrecpp3Arg12parse_stringEPKciPv”的 undefined reference |
obj\Debug\main.o||在函数“RE”中:|
C:\MinGW\msys\1.0\local\include\pcrecpp.h|493|对“_imp___ZN7pcrecpp2RE4InitERKSsPKNS_10RE_OptionsE”的 undefined reference |
||=== 构建完成:11 个错误,0 个警告 ===|

最佳答案

_imp___ZN7pcrecpp2RE6no_argE 是一个错位的名字。由于它包含 pcrecppno_arg 部分,我怀疑问题是您未能链接到 Pcrecpp。因此,未定义 no_arg 符号。

关于c++ - 帮助在 C++ 中使用 PCRE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4655403/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com