Tagged articles
116 articles
Page 2 of 2
Python Crawling & Data Mining
Python Crawling & Data Mining
Oct 1, 2018 · Fundamentals

Master Python Regex: When '+' Beats '*' for Precise Matching

This article explains how Python’s regex quantifiers '+' and '*' differ, demonstrating with step‑by‑step examples how '+' requires at least one occurrence of the preceding character, while '*' allows zero or more, and shows the resulting matches through clear screenshots.

Pythonpattern-matchingquantifiers
0 likes · 4 min read
Master Python Regex: When '+' Beats '*' for Precise Matching
Java Captain
Java Captain
Sep 27, 2018 · Fundamentals

A Beginner's Guide to Regular Expressions: Basics and Advanced Topics

This tutorial introduces regular expressions across programming languages, covering fundamental metacharacters, quantifiers, grouping, alternation, character classes, assertions, capturing, backreferences, greedy vs. lazy matching, and provides practical Java code examples for common validation tasks.

coding tutorialjavapattern-matching
0 likes · 17 min read
A Beginner's Guide to Regular Expressions: Basics and Advanced Topics
Programmer DD
Programmer DD
Aug 2, 2017 · Fundamentals

Mastering Regex: How to Build Precise and Efficient Regular Expressions

This article explains how to construct regular expressions that balance matching expected strings, avoiding false matches, maintaining readability, and achieving performance, while covering when to use regex, practical JavaScript examples, accuracy techniques for phone numbers and floats, and key optimization strategies.

JavaScriptaccuracyoptimization
0 likes · 12 min read
Mastering Regex: How to Build Precise and Efficient Regular Expressions
21CTO
21CTO
Jul 2, 2017 · Fundamentals

Essential Regex Cheat Sheet: 20 Common Validation Patterns for Developers

This cheat sheet compiles twenty practical regular‑expression patterns—including date, password, email, ID, IP, URL, and HTML validation examples—along with JavaScript snippets, giving developers a quick reference to boost input‑checking efficiency across front‑end and back‑end projects.

BackendJavaScriptfrontend
0 likes · 8 min read
Essential Regex Cheat Sheet: 20 Common Validation Patterns for Developers
Tencent IMWeb Frontend Team
Tencent IMWeb Frontend Team
Jun 9, 2017 · Frontend Development

Master JavaScript Regex: String Methods and RegExp Object Explained

This article explains the two main aspects of using regular expressions in JavaScript—string methods such as search, replace, match, and split, and the RegExp object with its properties, constructor, and methods like exec, test, and compile, including practical tips and common pitfalls.

RegExpString Methodspattern-matching
0 likes · 6 min read
Master JavaScript Regex: String Methods and RegExp Object Explained
Aotu Lab
Aotu Lab
Dec 6, 2016 · Fundamentals

Master JavaScript Regular Expressions: From Basics to Advanced Patterns

This comprehensive guide explains what regular expressions are, their practical uses in data validation and string manipulation, the syntax of literals and constructors, key String and RegExp methods, character classes, quantifiers, anchors, groups, assertions, flags, and the behavior of JavaScript's NFA engine, all illustrated with clear code examples.

JavaScriptNFA EngineString Methods
0 likes · 15 min read
Master JavaScript Regular Expressions: From Basics to Advanced Patterns
Architecture Digest
Architecture Digest
Aug 30, 2016 · Fundamentals

Overview of Planned C# 7.0 Language Features

The article introduces the upcoming C# 7.0 language enhancements—including output variables, pattern matching, extended switch statements, tuples, deconstruction, local functions, numeric literal improvements, ref returns, new async return types, and throw expressions—explaining their syntax, usage, and current preview limitations.

Asynccsharplanguage features
0 likes · 17 min read
Overview of Planned C# 7.0 Language Features
Practical DevOps Architecture
Practical DevOps Architecture
Jul 11, 2016 · Fundamentals

Regular Expression Syntax and Metacharacter Guide

This article explains regular expression delimiters, common metacharacters, quantifiers, anchors, character classes, logical operators, negation, and escaping, providing clear examples of each pattern and how they match specific strings in target text.

metacharacterspattern-matchingregex
0 likes · 8 min read
Regular Expression Syntax and Metacharacter Guide

Introducing Erlang: Concurrency, Fault Tolerance, and Simple Syntax

This article introduces Erlang as a general‑purpose concurrent language, highlighting its fault‑tolerant runtime, simple 550‑line syntax, pattern‑matching capabilities, process creation with spawn, and practical examples using the ibrowse HTTP library to demonstrate message passing and distributed computing.

Erlangfunctional programmingpattern-matching
0 likes · 8 min read
Introducing Erlang: Concurrency, Fault Tolerance, and Simple Syntax