Oluwaseun Da Silva AladejanaforDA-SILVA.techoluwaseundasilva.hashnode.net·Sep 22, 2022Get Up And Running With Regex In No Time (System Programming).Introduction In any search algorithm, we need something to pass to identify the complex string available in the input string or input data which is basically a sequence of characters or string that would define the searching pattern. A set of charact...Discuss·30 likes·381 readsRegular Expressions
Devang TomarforDevangdevangtomar.hashnode.net·Nov 11, 2022Your Ultimate Regular Expression (Regex) Cheat Sheet 👑😎A regular expression (regex) is a pattern in input text that the regex engine attempts to match. A pattern is made up of one or more character literals, operators, or structures. It excels in searching for and manipulating text strings, as well as te...Discuss·10 likes·160 readsRegexI really love this article...And very helpful 11
Harshit JainforHarshit Jainhcodes.hashnode.net·Feb 8, 2023Understanding Regular Expressions in PythonIn this article, we're going to discuss how regular expression works and can be used in python Regular expressions, also known as RegEx, is a sequence of characters that define a search pattern. They are widely used in various programming languages, ...Discuss·9 likes·47 readsPython
Nabila AlamforNabila Alamnabilaalam.hashnode.net·Apr 4, 2023Regular Expressions in JavaScript:Having the ability to search through text, validate text, and replace text using an advanced set of rules is exactly what Regex is for. How to Create A Regular Expression: In JavaScript, you can create a regular expression in either of two ways: Meth...DiscussJavaScript
Daniel MesejoforPythonic Conversationssearchsort.hashnode.net·Mar 30, 2023Efficient Keyword Extraction with Regular Expressions and TrrexAs data scientists or engineers, manipulating string data with regular expressions in Pandas is a vital skill to have. Typical chores with regular expressions include splitting text, removing accents, and cleaning out unwanted characters. One of the ...Discuss·73 readsPython
Habiba WaelforHabiba's Little Cornerhabibawael.hashnode.net·Mar 29, 2023Understanding Regular Expressions: A Beginner's Guide (Part 4) ✨In this final article of the "Understanding Regular Expressions: A Beginner's Guide" series, we will continue our exploration of patterns. The power of patterns lies in their ability to match a wide range of characters and sequences, allowing for fle...Discuss·45 readsUnderstanding Regular Expressions: A Beginner's Guide Regex
Habiba WaelforHabiba's Little Cornerhabibawael.hashnode.net·Mar 26, 2023Understanding Regular Expressions: A Beginner's Guide (Part 3) ✨In Part 3 of this series, we are going to delve deeper into the fascinating world of regular expressions. We will explore general patterns and gain a better understanding of how they work. Additionally, we will focus on how to specify the number of m...DiscussUnderstanding Regular Expressions: A Beginner's Guide Regular Expressions
Birnadin ErickforFor Your Infobirnadine.hashnode.net·Mar 24, 2023Regular Expressions done rightA regular expression (here on, I will refer to as regex) is not scary as the meme states. It just needs a little patience and knowledge of the state diagram. Regex is just State Diagram! Only sounds fancy, but in a nutshell, it is just a primal fl...DiscussRegular Expressions
Birnadin ErickforFor Your Infobirnadine.hashnode.net·Mar 22, 2023Day 27: Filling the Gap IITLDR; I voluntarily built a website for my school and I am documenting the journey in 2 parts as this is 21 days of work. In this blog, I spent time explaining how I integrated the ghost project, what I did to overcome ghost's self-pointing assets an...DiscussCreating birn.ccRegular Expressions
Habiba WaelforHabiba's Little Cornerhabibawael.hashnode.net·Mar 19, 2023Understanding Regular Expressions: A Beginner's Guide (Part 2)Regular expressions have optional flags that allow for functionality like global searching and case-insensitive searching. These flags can be used separately or together in any order, and are included as part of the regular expression. In this articl...Discuss·44 readsUnderstanding Regular Expressions: A Beginner's Guide Regex
Habiba WaelforHabiba's Little Cornerhabibawael.hashnode.net·Mar 14, 2023Understanding Regular Expressions: A Beginner's Guide (Part 1)In this article, we'll explore regular expressions, how to create regular expressions and what are the regex methods. So, let's dive in! Introduction Regular expressions, also known as "regex" or "regexp," are patterns that aid programmers in finding...Discuss·261 readsUnderstanding Regular Expressions: A Beginner's Guide Regular Expressions
Agbeniga AgboolaforJavaScript Insightwpgroom.hashnode.net·Feb 13, 2023Mastering Regular Expressions in JavaScript: A Comprehensive GuideRegular expressions, also known as RegEx, are a powerful tool for pattern matching and string manipulation in programming. In JavaScript, regular expressions can be used to search for specific patterns within strings, replace or extract parts of a st...Discuss·1 like·44 readsJavaScript
Harshit JainforHarshit Jainhcodes.hashnode.net·Feb 8, 2023Understanding Regular Expressions in PythonIn this article, we're going to discuss how regular expression works and can be used in python Regular expressions, also known as RegEx, is a sequence of characters that define a search pattern. They are widely used in various programming languages, ...Discuss·9 likes·47 readsPython