Junaid Bin JamanProjunaidbinjaman.com·Sep 6, 2024Mastering Regular Expressions (Regex) and Using Them Effectively in PHPIntroduction Regular expressions (Regex) are essential tools in programming that enable developers to search for patterns within strings efficiently. Whether you’re working on form validations, search functionalities, or data extraction, regex offers...Discuss·10 likesPHPRegex
Brian Nesscodeahead.hashnode.dev·Sep 3, 2024Readable Regular ExpressionsIntroduction At a previous job, I was asked to participate on a technical interview of a new developer candidate. Mid-way through the interview our manager joined. I was new to the company myself, and when it was my turn to ask questions, I asked t...DiscussRegular Expressions
Manoj Chandrashekarblog.manoj.ch·Aug 16, 2024Regular expressions are awesome!I think regular expressions is a topic that gets equal love and hate from programmers. We love it when it works, and when it doesn't it makes us want to pull out our hair. (Perhaps, bald programmers are the most experienced Regex users? ;) ) If used ...DiscussProductivity
Asfaq Leeonleeonscoding.hashnode.dev·Aug 12, 2024A simple regular expression exampleOnce upon a time, simple regex patterns are really hard to understand to me. But now-a-days, I can write simple regex patterns comfortably. Few weeks ago, I also have written a complex one. Today I'm going to share how I approach a regex problem. Tod...DiscussRegex
Ramu Narasingaramunarasinga.hashnode.dev·Jul 31, 2024Convert a string to camelCase using this function in Javascript.Ever needed to convert a string to camelCase? I found an interesting code snippet while exploring the open-source Supabase repository. Here’s the method they use: function featureToCamelCase(feature: Feature) { return feature .replace(/:/g, '_'...Discuss·1 likeJavaScript
Jason Barkerswiftkix.com·Jul 26, 2024Simplified Regular Expressions in Swift [Advanced]Hopefully you're somewhat familiar with regular expressions and maybe even have some experience using them in Swift. If not, I wrote an earlier article series about regular expressions in Swift that can ramp you up quickly. In today's blog post, let'...DiscussSwift
Vukani Gcabashevukanig.hashnode.dev·Jul 2, 2024Understanding Regular Expressions (Regex)Introduction Regular expressions, commonly known as regex, are powerful tools we use for pattern matching within strings when we are trying to perform operations on a string. Some of the useful ways to use it include: search, edit, and manipulate tex...DiscussRegular Expressions
Edward Obohedwardoboh.hashnode.dev·Jun 29, 2024Comparing fnmatch and regexPattern matching is a fundamental aspect of text processing, enabling powerful searches and manipulations in various applications. Two common methods for pattern matching are fnmatch and regex. Each has its strengths and limitations, and understandin...Discussfnmatch
Vincent Gevincentgedev.hashnode.dev·Jun 25, 2024Regex, the good bits.There are two types of developers: those who fear regex because they don't understand it and those who abuse regex to flex on their millennial teammates. The purpose of this blog is to get you somewhere in between. Know the bits that will be super us...DiscussRegex
วีระชัย แย้มวจีpage2me.hashnode.dev·Jun 20, 2024Regular Expressions (Regex)Regular Expressions (Regex) Regular expressions, often shortened to regex or regexp, are essentially a special code used to define patterns within text. These patterns can be used for searching, extracting, or replacing text based on specific criteri...DiscussRegex