Tagged articles
18 articles
Page 1 of 1
php Courses
php Courses
Nov 5, 2025 · Backend Development

Mastering PHP’s mb_strlen: Handle Multibyte Strings with Ease

This guide explains how to use PHP’s mb_strlen function to accurately measure the length of multibyte strings, covering installation of the mbstring extension, syntax, optional encoding, practical code examples, and common validation scenarios for robust backend development.

PHPmb_strlenmultibyte
0 likes · 5 min read
Mastering PHP’s mb_strlen: Handle Multibyte Strings with Ease
php Courses
php Courses
Sep 30, 2025 · Backend Development

Master PHP’s ord() Function: Convert Characters to ASCII Values

This article explains how PHP's built‑in ord() function returns the ASCII code of a string's first character, details its syntax and parameters, shows multiple usage examples—including loops and handling of multibyte characters—and highlights important limitations and alternatives.

ASCIIPHPord function
0 likes · 4 min read
Master PHP’s ord() Function: Convert Characters to ASCII Values
php Courses
php Courses
Aug 14, 2025 · Backend Development

Master PHP String Deduplication: Expert Techniques for Fast, Clean Code

This article explores advanced PHP string handling methods—including array_unique, regular expressions, custom functions, large‑file streaming, and multibyte support—to efficiently remove duplicates, preserve specific repeats, and boost performance in real‑world backend applications.

duplicate removalregexstring handling
0 likes · 5 min read
Master PHP String Deduplication: Expert Techniques for Fast, Clean Code
Java Captain
Java Captain
Feb 14, 2025 · Fundamentals

Understanding Apache Commons StringUtils: isEmpty, isBlank, and Related Methods

This article explains the differences and usage of Apache Commons Lang3 StringUtils methods such as isEmpty, isNotEmpty, isAnyEmpty, isNoneEmpty, isBlank, isNotBlank, isAnyBlank, and isNoneBlank, providing code examples and behavioral details for handling null, empty, and whitespace strings in Java.

Apache CommonsStringUtilsisBlank
0 likes · 6 min read
Understanding Apache Commons StringUtils: isEmpty, isBlank, and Related Methods
php Courses
php Courses
Oct 15, 2024 · Backend Development

Using PHP strpos() to Find Character and Substring Positions

This article explains PHP's strpos() function, covering its syntax and demonstrating how to locate characters, substrings, and use an offset through clear code examples, enabling developers to efficiently perform string position searches.

PHPbackend-developmentstring handling
0 likes · 5 min read
Using PHP strpos() to Find Character and Substring Positions
php Courses
php Courses
Sep 16, 2023 · Backend Development

Understanding PHP's html_entity_decode() Function

This article explains the PHP html_entity_decode() function, covering its syntax, parameters, return value, practical usage examples, and important considerations for correctly converting HTML entities back to their original characters in web applications.

PHPWeb Developmenthtml_entity_decode
0 likes · 5 min read
Understanding PHP's html_entity_decode() Function
php Courses
php Courses
Aug 31, 2023 · Backend Development

Understanding PHP implode() Function: Syntax, Examples, and Use Cases

This article explains PHP's implode() function, covering its syntax, basic usage, and practical examples such as creating comma‑separated strings, building SQL IN clauses, and generating HTML lists, while providing clear code snippets for each scenario.

ArrayCode Examplesimplode
0 likes · 5 min read
Understanding PHP implode() Function: Syntax, Examples, and Use Cases
Selected Java Interview Questions
Selected Java Interview Questions
Dec 6, 2022 · Backend Development

Understanding Apache Commons Lang StringUtils isEmpty/isBlank Methods in Java

This article explains the various Apache Commons Lang StringUtils methods such as isEmpty, isNotEmpty, isAnyEmpty, isNoneEmpty, isBlank, isNotBlank, isAnyBlank, and isNoneBlank, providing usage examples, code snippets, and detailed behavior for handling null, empty, and whitespace strings in Java.

Apache Commons LangStringUtilsUtility Library
0 likes · 7 min read
Understanding Apache Commons Lang StringUtils isEmpty/isBlank Methods in Java
Programmer DD
Programmer DD
Jun 28, 2022 · Fundamentals

Mastering Apache Commons Lang StringUtils: Empty, Blank, and Their Variants

This article explains the Apache Commons Lang StringUtils utility class, detailing the behavior of isEmpty, isNotEmpty, isAnyEmpty, isNoneEmpty, isBlank, isNotBlank, isAnyBlank, and isNoneBlank methods with examples and source code, helping Java developers choose the right check for null, empty, or whitespace strings.

Apache CommonsBlank CheckEmpty Check
0 likes · 8 min read
Mastering Apache Commons Lang StringUtils: Empty, Blank, and Their Variants
Programmer DD
Programmer DD
Apr 29, 2022 · Fundamentals

Simplify Multiline Strings in Java 17 with Text Blocks

This article demonstrates how Java 17's Text Blocks feature lets developers create readable multiline HTML strings without cumbersome concatenation or escape sequences, improving code clarity and reducing errors.

Multiline StringsProgramming tutorialjava-17
0 likes · 4 min read
Simplify Multiline Strings in Java 17 with Text Blocks