Thomas Brennetotblog.brennetot.com·Mar 12, 2024[Quicky] Easy Ruby regexp to split stringAre you good at regexp? I'm not and I found an extremely easy way to update a regexp to split a string in Ruby. Input abc,abc abc abc abc I just want to split on , , a space ... and a new line. Great I won't show you an horrible .split with a .map t...Ruby
Pratik MforOmniGuruomniguru.net·Nov 3, 2023Java Regex 101 - Mastering the BasicsRegular expressions, also known as regex or regexp, are essential tools for pattern matching and text manipulation in programming. In Java, the java.util.regex API provides full support for regular expressions. Mastering regex basics is key to levera...Regex
Anthony Bosekdeveloperant.hashnode.dev·Sep 24, 2023A Beginner's Guide to Regular ExpressionsRegular expressions, a.k.a. regex or regexp, are a sequence of characters that specify a matched pattern in any text. They are extremely powerful for searching and manipulating text. What follows here is my attempt at simplifying the use of regular e...52 readsregex basics
ADEOYE Adefemiopeolluwa.hashnode.dev·Jul 26, 2023Rustling up Robustness: Mastering Regex in RustIntroduction Pattern matching is a process of checking whether a sequence of characters exists in a given text. It is typically used in programs for input validation and text replacement, amongst other things. Pattern matching is achievable through t...10 likes·75 readsRust programming
Joseph Lampteywadeydev.hashnode.dev·Jul 26, 2023Understanding RegexIn this short article, I will take you through the key underlying concepts behind Regex, what it is, and how to get writing Regex in no time ;) What is Regex? So what in heaven's name is Regex? Regex or Regular Expression is used for string matching ...2 likes·45 readsRegex