0

我正在尝试使用 youtube 数据 api 获取 youtube 播放列表的总持续时间。例如,我从http://gdata.youtube.com/feeds/api/playlists/63F0C78739B09958<yt:duration='xxx'/>下载响应,我的想法是遍历xxx每个视频的持续时间(以秒为单位),并将它们相加以获得总播放列表运行。

为了让每个我使用CAtlRegExp以下字符串:

<yt:duration seconds='{[0-9]+}'/>

但是它只匹配第一次出现,而不匹配其余的任何(参考下面粘贴的源代码,循环只迭代一次)。

我尝试了其他一些正则表达式字符串,例如

  • (<yt:duration seconds='{[0-9]+}'/>)

  • (<yt:duration seconds='{[0-9]+}'/>)*

但是他们也没有工作(同样的原因)。

这是源代码的摘录,其中 for 循环仅迭代一次,因为mcDuration.m_uNumGroups等于1

    //get video duration
    CAtlRegExp<> reDurationFinder;
    CAtlREMatchContext<> mcDuration; 

    REParseError status = reDurationFinder.Parse(_T("<yt:duration seconds='{[0-9]+}'/>"));

    if ( status != REPARSE_ERROR_OK )
    {
        // Unexpected error.
        return false;
    }

    if ( !reDurationFinder.Match(sFeed, &mcDuration) ) //i checked it with debug, sFeed contains full response from youtube data api
    {
        //cannot find video url
        return false;
    }

    m_nLengthInSeconds = 0;
    for ( UINT nGroupIndex = 0; nGroupIndex < mcDuration.m_uNumGroups; ++nGroupIndex )
    {
        const CAtlREMatchContext<>::RECHAR* szStart = 0;
        const CAtlREMatchContext<>::RECHAR* szEnd = 0;
        mcDuration.GetMatch(nGroupIndex, &szStart, &szEnd);

        ptrdiff_t nLength = szEnd - szStart;
        m_nLengthInSeconds += _ttoi(CString(szStart, nLength));
    }

我怎样才能CAtlRegExp匹配所有的出现<yt:duration ...

4

1 回答 1

1

您将始终只有第一次(下一次)出现。要找到其他人,您需要不断Match循环,直到找不到更多事件。

    for(; ; )
    {
        CAtlREMatchContext<> MatchContext;
        pszNextText = NULL;
        if(!Expression.Match(pszText, &MatchContext, &pszNextText))
            break;
        // Here you process the found occurrence
        pszText = pszNextText;
    }
于 2013-02-06T10:27:09.860 回答