代码搜索:regular

找到约 4,507 项符合「regular」的源代码

代码结果 4,507
www.eeworm.com/read/101128/15851582

cpp ex22a.cpp

// ex22a.cpp : Defines the initialization routines for the DLL. // #include "stdafx.h" #include #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __
www.eeworm.com/read/100917/15861071

cpp edtlib.cpp

// edtlib.cpp : Defines the initialization routines for the DLL. // #include "stdafx.h" #include "ccrystaltextview.h" #include #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FI
www.eeworm.com/read/100897/15862988

cpp bxfiledialog_dll.cpp

// BXFileDialog_Dll.cpp : Defines the initialization routines for the DLL. // #include "stdafx.h" #include #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_
www.eeworm.com/read/127767/14336390

txt e433. setting case sensitivity in a regular expression.txt

By default, a pattern is case-sensitive. By adding a flag, a pattern can be made case-insensitive. It is also possible to control case sensitivity within a pattern using the inline modifier (?i). Th
www.eeworm.com/read/127767/14336826

txt e427. greedy and nongreedy matching in a regular expression.txt

By default, pattern matching is greedy, which means that the matcher returns the longest match possible. For example, applying the pattern A.*c to AbcAbcA matches AbcAbc rather than the shorter Abc. T
www.eeworm.com/read/127767/14336907

txt e443. matching line boundaries in a regular expression.txt

By default, the beginning-of-line matcher (^) and end-of-line matcher ($) do not match at line boundaries. They match the beginning and end of the entire input sequence. For example, the pattern ^a ma
www.eeworm.com/read/127767/14337183

txt e425. applying regular expressions on the contents of a file.txt

The matching routines in java.util.regex require that the input be a CharSequence object. This example implements a method that efficiently returns the contents of a file in a CharSequence object.