C LibPCRE TRUE / FALSE问题

时间:2014-02-13 14:49:04

标签: c pcre

在FALSE和TRUE之间迭代时,函数出现了一些问题。如果我使用该函数作为主函数它是有效的(PCRE模式匹配好),当我想从main()调用该函数然后我有一个问题,并且不匹配。我想我做了一些逻辑错误。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <pcre.h>

typedef enum {FALSE, TRUE} bool;

static const char sub[] =
  "12345678901234567890^otherstrings^and^digits12345678901234567890";

bool CheckMyDigit(const char *subject)
{
  static const char my_pattern[] = "([0-9]{20})(?=[\\^=])";
  const char *errtext = NULL;
  int errofs = 0;
  pcre* recc = pcre_compile(my_pattern, 0, &errtext, &errofs, NULL);
  if (recc != NULL)
  {
    int ovcc[9];
    int rccc = pcre_exec(recc, NULL, subject, sizeof(subject), 0, 0, ovcc, 9);
    if (rccc >= 0)
    {
      const char *spcc = NULL;
      pcre_get_substring(subject, ovcc, rccc, 0, &spcc);
      printf("%s\n", spcc);
      pcre_free_substring(spcc);
      return TRUE;
    }
    else
    {
      return FALSE;
    }
  }

  pcre_free(recc);
}

int main()
{

  if(CheckMyDigit(sub) == TRUE) {
    printf("Match!\n");
  }
  else
  {
    printf("Error!\n");
  }
  return 0;
}

知道我哪里错了吗?

1 个答案:

答案 0 :(得分:1)

问题是,您使用的是sizeof而不是字符串长度:

pcre_exec(recc, NULL, subject, sizeof(subject), 0, 0, ovcc, 9
                               ^^^^^^^^^^^^^^^ 

应该是:

pcre_exec(recc, NULL, subject, strlen(subject), 0, 0, ovcc, 9

它在main()函数中运行,我认为你自己使用sub数组,sizeof(sub)给出字符数+ 1,但在函数中你sizeof(subjest) == {{1在您的系统中。