Articles by Tag #strings

Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!

trimMiddle() - the missing String trim method

Neither JavaScript nor CSS have a way to trim a string in the middle and insert a fill character like MacOS' Finder does. Here is an NPM method for it.

Learn More 9 1Jan 3

Quick Zig and C String Conversion Conundrums

Intro My background is mostly in C and as I am still new to zig some of the type...

Learn More 7 0Oct 13 '24

Code Smell 261 - DigiCert Underscores

Don't forget to check strings with special characters like underscores TL;DR: Underscore and...

Learn More 3 0Aug 3 '24

JavaScript: String Template Literals

String template literals give us a cleaner way to concatenate our strings and variables. Let's say...

Learn More 1 0Aug 3 '24

Mastering String APIs in Java

In Java, strings are fundamental for data manipulation. This article delves into the core...

Learn More 1 0May 31

Interpolação, Verbatim String Literals, Múltiplas Linhas – Tudo Sobre Strings no C#

Este artigo é uma cópia daquele publicado em meu blog, que estou respostando aqui para testar essa...

Learn More 1 0Dec 10 '24

Leetcode — 3110. Score of a String

It’s an easy problem from leet code with the description being: You are given a string s. The score...

Learn More 0 0Nov 2 '24

Matanuska ADR 015 - String Concatenation Operator

An ADR from Matanuska BASIC on a proposal to treat ; as a general purpose concatenation operator

Learn More 0 0Feb 2

JavaScript: Strings, String Methods, and String Properties

Strings Strings are primitive values in JS that contain letters and characters. Some...

Learn More 0 0Aug 3 '24

Tipos Básicos em Kotlin - Strings

Hoje irei abordar um tipo de dados que é muito utilizado na computação em geral, que são as Strings....

Learn More 0 0Sep 12 '24

Golang Multiline Strings: A Comprehensive Guide

Introduction Go (or Golang) is a statically typed, compiled programming language designed...

Learn More 0 0Mar 11

Rust Tutorial: Mastering Strings with Real Examples

Strings are everywhere in programming, and Rust has its own way of handling them—with a focus on...

Learn More 0 0Apr 15

Tipos Básicos em Kotlin - String Literals

Na última postagem eu comecei falar sobre strings e vamos dar continuidade falando de string...

Learn More 0 0Sep 14 '24

Exploring emoji encodings

Have you ever tried to covert a string with emojis to bytes? text = 'Hi 🙋🏽‍♂️' print(bytes(text,...

Learn More 0 0Jan 22