Tagged articles
7 articles
Page 1 of 1
php Courses
php Courses
Oct 25, 2023 · Backend Development

Using PHP 8 Match Expressions to Simplify Conditional Logic

The article introduces PHP 8's new Match expression, explains how it replaces verbose if‑elseif‑else chains with a concise, switch‑like syntax, demonstrates usage with code examples, and outlines its advantages such as readability, reduced redundancy, and built‑in default handling.

ConditionalPHP8match
0 likes · 4 min read
Using PHP 8 Match Expressions to Simplify Conditional Logic
DaTaobao Tech
DaTaobao Tech
Sep 22, 2022 · Backend Development

Advanced Java Stream APIs: Reduce, Match, FlatMap and Performance Tips

The article explores lesser‑used Java Stream APIs—reduce, the matching trio (allMatch, anyMatch, noneMatch) and flatMap—showing practical examples, performance impacts of operation ordering, readability trade‑offs, and when to prefer streams or traditional loops, even mentioning parallelStream considerations.

JavaStream APIflatMap
0 likes · 10 min read
Advanced Java Stream APIs: Reduce, Match, FlatMap and Performance Tips
MaGe Linux Operations
MaGe Linux Operations
Aug 21, 2014 · Fundamentals

Master Python Regular Expressions: From Basics to Advanced Usage

This article provides a comprehensive guide to Python's regular expression support, covering fundamental concepts, greedy vs. non‑greedy quantifiers, escape handling, match objects, pattern compilation, and the full suite of re module functions with practical code examples.

Pythonmatchpattern
0 likes · 16 min read
Master Python Regular Expressions: From Basics to Advanced Usage