File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 347
347
//! x* zero or more of x (greedy)
348
348
//! x+ one or more of x (greedy)
349
349
//! x? zero or one of x (greedy)
350
- //! x*? zero or more of x (ungreedy)
351
- //! x+? one or more of x (ungreedy)
352
- //! x?? zero or one of x (ungreedy)
350
+ //! x*? zero or more of x (ungreedy/lazy )
351
+ //! x+? one or more of x (ungreedy/lazy )
352
+ //! x?? zero or one of x (ungreedy/lazy )
353
353
//! x{n,m} at least n x and at most m x (greedy)
354
354
//! x{n,} at least n x (greedy)
355
355
//! x{n} exactly n x
356
- //! x{n,m}? at least n x and at most m x (ungreedy)
357
- //! x{n,}? at least n x (ungreedy)
356
+ //! x{n,m}? at least n x and at most m x (ungreedy/lazy )
357
+ //! x{n,}? at least n x (ungreedy/lazy )
358
358
//! x{n}? exactly n x
359
359
//! </pre>
360
360
//!
You can’t perform that action at this time.
0 commit comments