Other Resources:
Single line modifier - s
What is the single line modifier? How to use it?
How the single line modifier can be used on this example text:
✍: FYIcenter.com
![]()
The single line modifier 's', also called "dot all" modifier, modifies the behavior of the regular expression. When 's' is specified, the wildcard character "." will match the any character including the newline character treating the entire subject string as a single line. In other words,
With the given example subject string, we can use this regular expression: to capture the entire content of the "Hello" class with single line modifier, 's', specified:
2013-02-02, 0👍, 0💬
Popular Posts:
How to capture the MSN (Microsoft Network) bot entries from Web log file? Here are some Web log file...
All credit card numbers issued by JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...
All credit card numbers issued by Diners Club must start with 300 through 305, 36 or 38 and have 14 ...
All credit card numbers issued by JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...
Are you having problems using regular expressions when processing text strings in your applications ...