Most Important IT Side Skill, Regex

By Medium - 2020-12-01

Description

I was astounded when I first learned how to search for texts using Regex and process text data in ways unimaginable to me before. Today we can utilize its power inside Python, but it is the same in…

Summary

  • Regex is known as the IT skill that drastically increases productivity in everything you do on a computer!
  • It is a minor form of a programming language that you can use to find what you need instantly.
  • We can now ask Regex to find everything until the first occurrence of a word.
  • and only using ‘*,’ we would match everything, including spaces so that the results would be the entire tweet (Without the last and first word) Replace The Evil Will print “When you see the COVID-19 Companies taking massive television ads against me, forget what they say (which is false), YOU KNOW THAT COVID-19”.

 

Topics

  1. NLP (0.3)
  2. Coding (0.13)
  3. Backend (0.07)

Similar Articles

A Complete Guide to Flexbox

By CSS-Tricks - 2020-12-03

Our comprehensive guide to CSS flexbox layout. This complete guide explains everything about flexbox, focusing on all the different possible properties for the parent element (the flex container) and ...

Python enumerate(): Simplify Looping With Counters

By realpython - 2020-12-15

Once you learn about for loops in Python, you know that using an index to access items in a sequence isn't very Pythonic. So what do you do when you need that index value? In this tutorial, you'll lea ...

QuickGraph#17 The English WordNet in Neo4j (part 2)

By Jesús Barrasa - 2021-02-05

In this second post on WordNet on Neo4j I will be focusing on querying and analysing the graph that we created in the previous post. I'll leave for a third one more advanced analysis and integrations ...