Ridwan Ajibolarajibola.hashnode.dev·Feb 7, 2025🚀 Human-Regex: Write Readable Regular Expressions Like EnglishCreated by Ridwan Ajibola // Before: Cryptic regex for password validation const passwordRegex = /^(?=.*\d)(?=.*[!@#$%^&*])(?=.*[a-zA-Z]).{8,}$/; // After: Human-readable with human-regex const humanPasswordRegex = createRegex() .startAnchor()...JavaScript
Lena Junglenajung.hashnode.dev·Jan 28, 2025[Coding Test] Essential Libraries1. String Methods (Built-in Functions) Basic Operations: len(s): Get the length of a string. s[i]: Access the character at index i. Case Handling: s.lower(), s.upper(): Convert to lowercase/uppercase. s.capitalize(), s.title(): Capitalize the...coding test
Sreedeep cvsreedeep.hashnode.dev·Jan 19, 2025Mastering Regex: The Quick Guide to Regular ExpressionsRegular Expressions, or Regex, are powerful tools for working with text. While it may seem overwhelming at first, understanding Regex opens doors to solving a wide range of problems efficiently. This guide will walk you through the theoretical founda...20 likesRegex
Gilles Vauvarinthewhale.hashnode.dev·Jan 14, 2025Here are 7 Regex tools that can save your life from hell 🔥#regex #development #tooling I don't know if you're like me, but whenever I'm faced with a regular expression aka Regex I break out in a cold sweat. I hate this synthaxis and I'm tearing my hair out to find the one that's right for me. Fortunately, t...Regex
Vishal Nayakvishalnayak.hashnode.dev·Jan 13, 2025JavaScript Regex guide for for beginners.JavaScript Regular Expressions, commonly known as Regex, are a powerful tool for searching and manipulating strings of text. Regex can be used to validate user input, extract information from strings, and even replace text within strings. In this art...JavaScript
Kilokiloai.hashnode.dev·Jan 8, 2025Giới thiệu về Biểu Thức Chính Quy (Regex) trong PythonBiểu thức chính quy (Regular Expression hay Regex) là một công cụ mạnh mẽ để xử lý và tìm kiếm mẫu trong chuỗi văn bản. Chúng thường được sử dụng trong việc kiểm tra định dạng dữ liệu, trích xuất thông tin và thay thế văn bản. Trong bài viết này, chú...Regex
RANIT MANIKranitmanik.hashnode.dev·Dec 30, 2024Regular expressions (regex) in JavaScriptRegular expressions (regex) in JavaScript are a powerful tool for pattern matching and text manipulation. They allow you to search for, match, and manipulate strings based on patterns, which is useful for tasks such as form validation, searching, and...10 likesRegex
Jyotiprakash Mishrablog.jyotiprakash.org·Dec 18, 2024Arrays, Strings, and StringBuilder in JavaWhen diving into Java programming, the foundational tools for handling data and text are Arrays, Strings, and Builders. Each serves a distinct purpose, and together, they form the backbone of efficient data processing and text manipulation. Arrays of...417 readsJava
Anix Lynchgozeroshot.dev·Dec 12, 2024Why JSON object is super usefulHere are 4 specific before-and-after demonstrations to clarify how JSON makes working with LLMs more manageable and efficient. 1.Scenario: Chatbot for Restaurant Reservations The customer sends a message:"Hi, I'd like to book a table for 4 people at...json
Sakshi from KushoAIsoftware-deep-dives.hashnode.dev·Dec 6, 2024How regex was responsible for the crowdstrike outageThis blog is written by Akshat Virmani at KushoAI. We're building the fastest way to test your APIs. It's completely free and you can sign up here. Do you know what one of the biggest nightmares of people who rely on computers often is? The computer ...tech failure