Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What's the difference between /^Foo/s and /^Foo/?
What's the difference between /^Foo/s and /^Foo/?
✍: Guest
The second would match Foo other than at the start
of the record if $* were set.
The deprecated $* flag does double duty, filling the
roles of both /s and /m. By using /s, you suppress
any settings of that spooky variable, and force your
carets and dollars to match only at the ends of the
string and not at ends of line as well -- just as
they would if $* weren't set at all.
2013-09-12, 2524👍, 0💬
Popular Posts:
What is the FP per day in your current company?
How do we host a WCF service in IIS? Note: - The best to know how to host a WCF in IIS is by doing a...
What will be printed as the result of the operation below: #define swap(a,b) a=a+b;b=a-b;a=a-b; void...
How to convert a Unix timestamp to a Win32 FILETIME or SYSTEMTIME? The following function converts a...
How To Return Top 5 Rows? - MySQL FAQs - SQL SELECT Statements with JOIN and Subqueries If you want ...