In this part of my Java Video Tutorial, I cover Java Regular Expressions. You use regular expressions when you want to search for data. You then use codes to define what that data looks like.
So, if you are looking for a 5 digit number, you could type \\d{5} and Java does the rest!
The code that...
Here I show you how to use many string manipulation methods in PHP. Also, I finish showing you how to use regular expressions.
You should watch the previous 2 PHP Regular Expressions video tutorials before you continue on to this one. They are avaialable here PHP Regular Expressions & PHP...
In this video I’ll continue to show you how to retrieve specific information using Regular Expressions and PHP. I’ll specifically cover how to find:
Email Addresses
Phone Numbers
Dates
Validated Passwords
And other more complicated Regular Expressions
You definitely should watch...
I while back I showed you how to Make Money Blogging by setting up a simple automated WordPress blog using WP-O-Matic. I was then asked for an automated site that allowed for more robust article grabbing.
In the video below I show you how to grab content from any website and then send that to...
In this video, I provide a bunch of examples on how to use Regular Expressions in Python. I show you how to search for numerous different types of data and output and manipulate that data.
I’ve provided all of the code after the video and if you have any questions, leave them in the...
In this tutorial, I continue teaching you how to use Regular Expressions. I specifically go over the numerous functions available in the Python programming language that you can use for searches.
I will explain how to:
Grab text from text files
Create Regular Expressions in Python
Search...
Here is a Regex Tutorial Video that will get you Regular Expression Matching like a pro. You can think of this as a Regular Expression Reference that you can come back to whenever you need to brush up.
I cover all of the codes used in Regex and give ever more complex examples until you...
My goal in this article is to teach you everything you ever wanted to know about Regular Expressions. Regular Expressions are used to decide if a set of characters match what you are searching for. You use a series of codes to define what you are looking for.
Because these codes are so simple...