c |比较字符串格式

c | compare string format

我想知道是否有任何简单的选项可以让字符串等于格式字符串。 例如,我希望此格式 .mat[something][something] 等于使用 strcmp.mat[r1][r2].mat[4][5]

是否有使用某种正则表达式的选项?或类似 strcmp(.mat[%s][%s], .mat[r3][r5])?

顺便说一句,我正在使用 ansi-c 谢谢

使用最接近正则表达式的东西,scanf 扫描集,这可行,但非常难看:

char row[20], col[20], bracket[2], ignored;
if (sscanf(input, ".mat[%19[^]]][%19[^]]%1[]]%c", row, col, bracket, &ignored) == 3) {
    // row and col contain the corresponding specifications...    
    // bracket contains "]"
    // %c failed to convert because if the end of string
    ....
}

这是 ".mat[r1][r2]" 的分解转换规范:

".mat["    // matches .mat[
"%19[^]]"  // matches r1   count=1
"]["       // matches ][
"%19[^]]"  // matches r2   count=2
"%1[]]"    // matches ]    count=3
"%c"       // should not match anything because of the end of string

替代 好的答案:这允许使用各种后缀并且没有 bracket[2]

使用"%n" 保存扫描偏移量。如果到那时为止扫描成功,它将不为零

// .mat[something][something]
#define PREFIX ".mat"
#define IDX "[%19[^]]]"
#define SUFFIX ""

char r1[20], r2[20];
int n = 0;
sscanf(input, PREFIX INDEX INDEX SUFFIX "%n", r1, r2, &n);

// Reached the end and there was no more
if (n > 0 && input[n] == '[=10=]') Success();
else Failure();