#regex search results

Happy #MemeMonday to those who speak the ancient tongue 🧝🏻‍♂️ #regex

ThePracticalDev's tweet image. Happy #MemeMonday to those who speak the ancient tongue 🧝🏻‍♂️ #regex

🚀 Tech Tuesdays episode 13 - #regex 🚀


Current status of my latest #sideproject😄 #Regex FTW!

nic_o_martin's tweet image. Current status of my latest #sideproject😄
#Regex FTW!

Privacy-First Regex Tools! 🔒 ​​100% client-side​​ 🔄 ​​Match + Extract + Visualize​​ in one flow 🔬 ​​Regulex-powered state diagrams​​ Test patterns securely → regex.rapiddns.io #RegEx #DeveloperTools #WebDev #Coding #tech #rapiddns

rapiddns's tweet image. Privacy-First Regex Tools!

🔒 ​​100% client-side​​

🔄 ​​Match + Extract + Visualize​​ in one flow

🔬 ​​Regulex-powered state diagrams​​ 

Test patterns securely → regex.rapiddns.io

#RegEx #DeveloperTools #WebDev #Coding #tech #rapiddns

Regex tip: referencing matched groups in replace patterns Groups captured in parentheses can be referenced as $1, $2, etc. in your replace pattern. Example - converting float vars to int (try in VS Code/Neovim): Find: float (\w+) = (\d+)\.?\d*; Replace: int $1 = $2; #regex

simontunaitis's tweet image. Regex tip: referencing matched groups in replace patterns

Groups captured in parentheses can be referenced as $1, $2, etc. in your replace pattern.

Example - converting float vars to int (try in VS Code/Neovim):
Find: float (\w+) = (\d+)\.?\d*;
Replace: int $1 = $2;

#regex

A good day to promote the classic Owl book from @OReillyMedia #aoc #regex

juanantoniobm's tweet image. A good day to promote the classic Owl book from @OReillyMedia 

#aoc #regex

I am rather enjoying using the Swift Regex builders in a new server side swift AWS-Lambda project. #SwiftLang #Regex

hishnash's tweet image. I am rather enjoying using the Swift Regex builders in a new server side swift AWS-Lambda project. 

#SwiftLang #Regex

👨‍💻 I built a #WebScraper that extracts Emails and Phone numbers from websites The program prompts the user to enter a webpage link it then visits the webpage and extracts all emails and phone numbers, stores them in a .txt file Repo: github.com/0z-cryptik/Web… #Python #Regex

eniiiiitan's tweet image. 👨‍💻 I built a #WebScraper that extracts Emails and Phone numbers from websites

The program prompts the user to enter a webpage link

it then visits the webpage and extracts all emails and phone numbers, stores them in a .txt file

Repo: github.com/0z-cryptik/Web…

#Python #Regex
eniiiiitan's tweet image. 👨‍💻 I built a #WebScraper that extracts Emails and Phone numbers from websites

The program prompts the user to enter a webpage link

it then visits the webpage and extracts all emails and phone numbers, stores them in a .txt file

Repo: github.com/0z-cryptik/Web…

#Python #Regex
eniiiiitan's tweet image. 👨‍💻 I built a #WebScraper that extracts Emails and Phone numbers from websites

The program prompts the user to enter a webpage link

it then visits the webpage and extracts all emails and phone numbers, stores them in a .txt file

Repo: github.com/0z-cryptik/Web…

#Python #Regex

Finally made a video to show how I build up regex bit by bit, testing as I go. The example here is parsing a CBS (Component Based Servicing) log but technique can be used for any log file. Resulting #Regex may look scary but please watch how it is built. 10 minutes, unscripted,…

guyrleech's tweet image. Finally made a video to show how I build up regex bit by bit, testing as I go.
The example here is parsing a CBS (Component Based Servicing) log but technique can be used for any log file.
Resulting #Regex may look scary but please watch how it is built.
10 minutes, unscripted,…

Allez qui a besoin de Tonton Olivier (@ponceto91) pour les #regex, venez voter, mais surtout allez voir sa vidéo. Lien en commentaire 👇

happytodev's tweet image. Allez qui a besoin de Tonton Olivier (@ponceto91) pour les #regex, venez voter, mais surtout allez voir sa vidéo.

Lien en commentaire 👇

Yo come see my dumb ass talk @AndroidMakersFR In SALLE MOEBIUS (main stage) at 16:20 TODAY (Thursday) if you wanna learn Regex & how to use it in Kotlin! #AMxDC25 #regex #kotlin

Ben_Kadel's tweet image. Yo come see my dumb ass talk @AndroidMakersFR
In SALLE MOEBIUS (main stage) at 16:20 TODAY (Thursday) if you wanna learn Regex & how to use it in Kotlin! #AMxDC25 #regex #kotlin

Introduction to Regular Expressions (Regex) Investing a small amount of time into becoming familiar with this simple language will save you many hours as a security engineer or hacker! hackers-arise.net/2023/01/02/int… @three_cube #hacking #regex

_aircorridor's tweet image. Introduction to Regular Expressions (Regex)

Investing a small amount of time into becoming familiar with this simple language will save you many hours as a security engineer or hacker!

hackers-arise.net/2023/01/02/int…

@three_cube #hacking #regex

a? → maybe a* → as many as you want a+ → at least one a{3,6} → somewhere between picky and greedy 😅 Regex isn’t scary—just picky with patterns. #regex

FechinLi's tweet image. a? → maybe
a* → as many as you want
a+ → at least one
a{3,6} → somewhere between picky and greedy 😅 

Regex isn’t scary—just picky with patterns. #regex

literally over 6 hours debugging the freaking issue and I just hate #regex, it's the worst ever. but at least I learn something ahah

datalevi's tweet image. literally over 6 hours debugging the freaking issue and I just hate #regex, it's the worst ever.
but at least I learn something ahah

Want to parse a CBS (Component Based Servicing)? It's "easy" with #regex 😊 Can then filter in PowerShell, Out-Gridview (not pwsh 7.5.* ☹️), Excel , etc I couldn't use .NET ReadLines() as file is locked & I prefer \d\d\d\d over \d{4} as I think looks less scary to you humans

guyrleech's tweet image. Want to parse a CBS (Component Based Servicing)?
It's "easy" with #regex 😊
Can then filter in PowerShell, Out-Gridview (not pwsh 7.5.* ☹️), Excel , etc

I couldn't use .NET ReadLines() as file is locked & I prefer \d\d\d\d over \d{4} as I think looks less scary to you humans

#Magento 2 Tips✍️ How to convert multi-line plain text to system configuration friendly dropdown? ℹ️ Use #Regex (see the screenshots)

rajkbnp's tweet image. #Magento 2 Tips✍️

How to convert multi-line plain text to system configuration friendly dropdown?
ℹ️ Use #Regex (see the screenshots)
rajkbnp's tweet image. #Magento 2 Tips✍️

How to convert multi-line plain text to system configuration friendly dropdown?
ℹ️ Use #Regex (see the screenshots)
rajkbnp's tweet image. #Magento 2 Tips✍️

How to convert multi-line plain text to system configuration friendly dropdown?
ℹ️ Use #Regex (see the screenshots)

MUST WATCH: An absolutely unforgettable presentation on #regex by the brilliant @Ben_Kadel at #dcbln25! ​If you've been struggling, this is the talk that will finally help you master regular expressions. 🤯 ​youtu.be/hnSN-fcKb-E

mohsenoid's tweet card. Escape from Planet Regex - Kotlin to the Rescue - Ben Kadel |...

youtube.com

YouTube

Escape from Planet Regex - Kotlin to the Rescue - Ben Kadel |...


Here's a little look at failing in public and being responsible: Read more here: devleader.ca/2024/04/12/csh… #CSharp #DotNet #Regex #Performance

DevLeaderCa's tweet image. Here's a little look at failing in public and being responsible:

Read more here:
devleader.ca/2024/04/12/csh…

#CSharp #DotNet #Regex #Performance

What are some of the ways we can customize regex in CSharp? Read more here: devleader.ca/2024/04/01/reg… #CSharp #DotNet #Regex #RegularExpressions

DevLeaderCa's tweet image. What are some of the ways we can customize regex in CSharp?

Read more here:
devleader.ca/2024/04/01/reg…

#CSharp #DotNet #Regex #RegularExpressions

🚀 Major update to my #VSCode Regex extension! ✨ 100+ regex snippets, multi-language support (JS, TS, Python, PHP, Java, C#, Go, Rust), advanced Bootstrap 5 forms, regex tester & explainer commands, and improved docs. #regex #vscode #devtools #javascript


Regex is powerful for pattern matching, but what about performance? Read more here: devleader.ca/2024/04/08/csh… #CSharp #DotNet #Regex #Performance

DevLeaderCa's tweet image. Regex is powerful for pattern matching, but what about performance?

Read more here:
devleader.ca/2024/04/08/csh…

#CSharp #DotNet #Regex #Performance

RExpository List of 200+ regular expressions for sensitive data extraction: - usernames - IPs - emails - API Keys - Access Tokens - Hashes and others. jaimepolop.github.io/RExpository/ By Jaime Polop with @hacktricks_live

cyb_detective's tweet image. RExpository

List of 200+ regular expressions for sensitive data extraction:

- usernames
- IPs
- emails
- API Keys
- Access Tokens
- Hashes

and others.

jaimepolop.github.io/RExpository/

By Jaime Polop with @hacktricks_live


Want to learn how to use regular expressions in CSharp? Read more here: devleader.ca/2024/04/02/reg… #CSharp #DotNet #Regex #RegularExpressions

DevLeaderCa's tweet image. Want to learn how to use regular expressions in CSharp?

Read more here:
devleader.ca/2024/04/02/reg…

#CSharp #DotNet #Regex #RegularExpressions

@BenKadel is doing it again talking #regex at #dcbln25. 🚀🧑‍🎤

mohsenoid's tweet image. @BenKadel is doing it again talking #regex at #dcbln25. 🚀🧑‍🎤

Boost your .NET projects with Spargine’s powerful RegexProcessor! 🚀 Efficient text processing with GeneratedRegexAttribute for top performance. Check out the methods and contribute today! dotnettips.wordpress.com/2024/12/22/boo… #dotnet #regex #opensource #coding #MVPBuzz

realDotNetDave's tweet image. Boost your .NET projects with Spargine’s powerful RegexProcessor! 🚀 Efficient text processing with GeneratedRegexAttribute for top performance. Check out the methods and contribute today!
dotnettips.wordpress.com/2024/12/22/boo…
#dotnet #regex #opensource #coding #MVPBuzz

Irrespective of language, I will always hate #regex. One day, I will learn #perl just out of spite.


Happy #MemeMonday to those who speak the ancient tongue 🧝🏻‍♂️ #regex

ThePracticalDev's tweet image. Happy #MemeMonday to those who speak the ancient tongue 🧝🏻‍♂️ #regex

Very proud to announce the release of Cytosine-AI. It's a 120 layer, 500,000 parameter convolutional ResNet that has been trained to detect Cytosines in a DNA sequence. This is the day genomics changed forever. #PyTorch #Bioinformatics #Regex

OscarWilkins16's tweet image. Very proud to announce the release of Cytosine-AI. It's a 120 layer, 500,000 parameter convolutional ResNet that has been trained to detect Cytosines in a DNA sequence. This is the day genomics changed forever. #PyTorch #Bioinformatics #Regex

Twitter is a train wreck. “5 billion” is trending. This is why. #regex #regexp

ErinIshimoticha's tweet image. Twitter is a train wreck. “5 billion” is trending. This is why. #regex #regexp
ErinIshimoticha's tweet image. Twitter is a train wreck. “5 billion” is trending. This is why. #regex #regexp
ErinIshimoticha's tweet image. Twitter is a train wreck. “5 billion” is trending. This is why. #regex #regexp
ErinIshimoticha's tweet image. Twitter is a train wreck. “5 billion” is trending. This is why. #regex #regexp

1 10-minute video is all you need, who knew?!! And here I was struggling for years. #regex

adbertram's tweet image. 1 10-minute video is all you need, who knew?!!  And here I was struggling for years. #regex

#DFIR Regular Expressions List of #regex for searching and extracting: - ip adresses - nicknames - passwords - phone numbers - emails - filenames - URLs and more. github.com/joshbrunty/DFI… Contributor @joshbrunty

cyb_detective's tweet image. #DFIR Regular Expressions

List of #regex for searching and extracting:

- ip adresses
- nicknames
- passwords
- phone numbers
- emails
- filenames
- URLs

and more.

github.com/joshbrunty/DFI…

Contributor @joshbrunty

Day7⃣ of Python Series 🐍 ✅Topic - Regex Functions in #Python Regular expressions commonly referred to as #Regex are dynamic tools used for manipulation & pattern matching of textual Data 🧵👇

Sachintukumar's tweet image. Day7⃣ of Python Series 🐍

✅Topic - Regex Functions in #Python

Regular expressions commonly referred to as #Regex are dynamic tools used for manipulation & pattern matching of textual Data

🧵👇

#RegEx crawler for #TDS system... 16 different RegEx in. #ChatGPT is of great help, but still feel I need to optimize a lot later on.... #EvilCrackz I am coming for you!

Gi7w0rm's tweet image. #RegEx crawler for #TDS system...
16 different RegEx in. 
#ChatGPT is of great help, but still feel I need to optimize a lot later on....

#EvilCrackz I am coming for you!

#PowerShell #RegEx tip: Instead of cluttering your code with numerous `-or` operators, make your code more concise with the RegEx "or" operator: |

DevOpsJeremy's tweet image. #PowerShell #RegEx tip:

Instead of cluttering your code with numerous `-or` operators, make your code more concise with the RegEx "or" operator: |
DevOpsJeremy's tweet image. #PowerShell #RegEx tip:

Instead of cluttering your code with numerous `-or` operators, make your code more concise with the RegEx "or" operator: |

For my pals, @techspence and @dotdotdotHorse, and for all of my friends working with #regex in #PowerShell. IYKYK. 💙

SamErde's tweet image. For my pals, @techspence and @dotdotdotHorse, and for all of my friends working with #regex in #PowerShell. IYKYK. 💙

Hacker Fundamentals: Introduction to Regular Expressions (regex) #regex #pcre #cybersecurity #cyberwarrior hackers-arise.com/post/introduct…

three_cube's tweet image. Hacker Fundamentals: Introduction to Regular Expressions (regex) #regex #pcre #cybersecurity #cyberwarrior

hackers-arise.com/post/introduct…

PassDetective Tool that scans shell command history to detect mistakenly written passwords, API keys, and secrets (c). github.com/aydinnyunus/Pa… #go #CyberSecurity #regex Creator @aydinnyunuss

cyb_detective's tweet image. PassDetective

Tool that scans shell command history to detect mistakenly written passwords, API keys, and secrets (c).

github.com/aydinnyunus/Pa…

#go #CyberSecurity #regex

Creator @aydinnyunuss

This simple instruction shows how to search for leaked credentials on website using Google Chrome's Developer Tool (and anything else using #regex). github.com/h4x0r-dz/Leake… Contributor @h4x0r_dz Tip by @RootMoksha

cyb_detective's tweet image. This simple instruction shows how to search for leaked credentials on website using Google Chrome's Developer Tool (and anything else using #regex).

github.com/h4x0r-dz/Leake…

Contributor @h4x0r_dz 

Tip by @RootMoksha

Current status of my latest #sideproject😄 #Regex FTW!

nic_o_martin's tweet image. Current status of my latest #sideproject😄
#Regex FTW!

Nem #Seniors de 2 anos acerta (maior parte das vezes) #regex

MandaEssa's tweet image. Nem #Seniors de 2 anos acerta (maior parte das vezes) #regex

I've never found the time or motivation to master #REGEX. However, with the advent of #GPT4, I no longer feel the need to. The AI is capable of generating highly complex regex patterns based on just a simple text description.

GozukaraFurkan's tweet image. I've never found the time or motivation to master #REGEX. However, with the advent of #GPT4, I no longer feel the need to. The AI is capable of generating highly complex regex patterns based on just a simple text description.
GozukaraFurkan's tweet image. I've never found the time or motivation to master #REGEX. However, with the advent of #GPT4, I no longer feel the need to. The AI is capable of generating highly complex regex patterns based on just a simple text description.
GozukaraFurkan's tweet image. I've never found the time or motivation to master #REGEX. However, with the advent of #GPT4, I no longer feel the need to. The AI is capable of generating highly complex regex patterns based on just a simple text description.
GozukaraFurkan's tweet image. I've never found the time or motivation to master #REGEX. However, with the advent of #GPT4, I no longer feel the need to. The AI is capable of generating highly complex regex patterns based on just a simple text description.

Happy N[aoe]o?[vwyiuo]r[uoy]o?z! ☺️ نوروز خجسته باد/Навруз хуҷаста бод! #regex #regularexpressions #dh

fatimid_studies's tweet image. Happy N[aoe]o?[vwyiuo]r[uoy]o?z!  ☺️

نوروز خجسته باد/Навруз хуҷаста бод!

#regex #regularexpressions #dh

#Python Regular Expressions: a comprehensive guide with examples! 🐍🔥 → morioh.com/p/7feceb123f80… via @Python_Dv #Regex

DataChaz's tweet image. #Python Regular Expressions: a comprehensive guide with examples!  🐍🔥

→ morioh.com/p/7feceb123f80…

via @Python_Dv #Regex

Loading...

Something went wrong.


Something went wrong.


United States Trends