代码搜索:pattern
找到约 10,000 项符合「pattern」的源代码
代码结果 10,000
www.eeworm.com/read/231050/14259296
htm disc5.htm
Discussion of Behavioral Patterns
function setFocus() {
if ((navigator.appName != "Netscape") && (parseFloat(navigator.appVersion) == 2)) {
return;
} else {
www.eeworm.com/read/231050/14259564
htm pat5c.htm
Interpreter
function setFocus() {
if ((navigator.appName != "Netscape") && (parseFloat(navigator.appVersion) == 2)) {
return;
} else {
self.focus();
}
}
www.eeworm.com/read/230739/14277329
c match.c
/*
Copyright (c) 1990-2005 Info-ZIP. All rights reserved.
See the accompanying file LICENSE, version 2000-Apr-09 or later
(the contents of which are also included in unzip.h) for terms of use.
www.eeworm.com/read/127767/14337479
txt e402. limiting the size of a log by using a rotating sequence of files.txt
The example e401 Limiting the Size of a Log File shows how to limit the log file size by automatically emptying it when it reaches the limit. However, this approach has the disadvantage of discarding
www.eeworm.com/read/127767/14337608
txt e436. capturing text in a group in a regular expression.txt
A group is a pair of parentheses used to group subpatterns. For example, h(a|i)t matches hat or hit. A group also captures the matching text within the parentheses. For example,
input: abbc
www.eeworm.com/read/127767/14337824
txt e317. parsing the time using a custom format.txt
A pattern of special characters is used to specify the format of the time to parse. The same set of pattern characters are used to parse times. See e316 Formatting the Time Using a Custom Format for a
www.eeworm.com/read/127109/14378707
cpp qregexp.cpp
/****************************************************************************
** $Id: qt/src/tools/qregexp.cpp 2.2.3 edited 2000-08-25 $
**
** Implementation of QRegExp class
**
** Created : 95012
www.eeworm.com/read/227599/14420308
c regex.c
/* Extended regular expression matching and search library,
version 0.12.
(Implements POSIX draft P10003.2/D11.2, except for
internationalization features.)
Copyright (C) 1993 Free Softwa
www.eeworm.com/read/226770/14452903
c match.c
#include "match.h"
int match(const char *pattern,const char *buf,unsigned int len)
{
char ch;
for (;;) {
ch = *pattern++;
if (!ch) return !len;
if (ch == '*') {
ch = *pattern;
www.eeworm.com/read/125502/14489320
c nnwhat.c
/*--------------------------------------------------------------------------*
* Gregory Stevens 7/5/93 *
* NNWHAT.C