代码搜索:regular

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

代码结果 4,507
www.eeworm.com/read/428216/8883115

h fio.h

/***************************************************************************** * fio.h: Header file for NXP LPC23xx/24xx Family Microprocessors * * Copyright(C) 2006, NXP Semiconductor *
www.eeworm.com/read/462841/7194485

h fio.h

/***************************************************************************** * fio.h: Header file for NXP LPC23xx/24xx Family Microprocessors * * Copyright(C) 2006, NXP Semiconductor *
www.eeworm.com/read/127767/14336050

txt e448. parsing a string into paragraphs using a regular expression.txt

This example demonstrates how to parse a CharSequence into an array of paragraphs. A paragraph is a contiguous sequence of non-blank lines separated by one or more blank lines. The lines in a paragrap
www.eeworm.com/read/127767/14337039

txt e437. getting the indices of a matching group in a regular expression.txt

For more information about groups, see e436 Capturing Text in a Group in a Regular Expression. CharSequence inputStr = "abbabcd"; String patternStr = "(a(b*))+(c*)"; // Compile a
www.eeworm.com/read/127767/14337076

txt e444. matching across line boundaries in a regular expression.txt

By default, the any-character matcher (.) does not match line termination characters such as \n and \r. To allow dot (.) to match line termination characters, the pattern should be compiled with the d
www.eeworm.com/read/127767/14337124

txt e432. parsing a string into tokens using a regular expression.txt

This example implements a tokenizer that uses regular expressions. The use of this tokenizer is similar to the StringTokenizer class in that you use it like an iterator to extract the tokens. Ch