Enter words or phrases, names or places to create your custom video playlist.
You can also enter Youtube or Wn URLs



Enter words or phrases, names or places to create your custom video playlist.
You can also enter Youtube or Wn URLs



Add to Playlist
21:45
Theory Of Computation 61 -- Examples of Regular expressions
Description....
published: 28 Jun 2014
Play in Full Screen
Add to Playlist
11:54
REGEX Tutorial Regular Expressions
Best Regular Expressions Book : http://goo.gl/RFX7eJ Here I explain how Regular Expression...
published: 17 Sep 2010
author: Derek Banas
Play in Full Screen
Add to Playlist
6:15
What are Regular Expressions and Languages?
What are Regular Expressions and Languages? A very simple explanation of what Regular Exp...
published: 27 May 2014
Play in Full Screen
Add to Playlist
6:47
1 - Convert Regular Expression to Finite-State Automaton
This video shows you how to convert a simple regular expression to a finite-state automato...
published: 09 May 2011
author: Barry Brown
Play in Full Screen
Add to Playlist
8:47
2 - Convert Regular Expression to Finite-State Automaton
The second in a series of videos about the relationship between regular expressions and fi...
published: 09 May 2011
author: Barry Brown
Play in Full Screen
Add to Playlist
48:19
Best of Fluent 2012: /Reg(exp){2}lained/: Demystifying Regular Expressions
From Fluent 2012: Quick, what does this do: /(\/\*?\\/)|\/\/.*?(\r?\n|$)/g? If you're like...
published: 08 Apr 2013
author: O\'Reilly
Play in Full Screen
Add to Playlist
10:55
Regular Expressions - Episode 1 - Introduction
Welcome to the Software Carpentry lecture on regular expressions. In order to understand w...
published: 09 Jun 2011
Play in Full Screen
Add to Playlist
21:34
Let's Learn Python #23 - Regular Expressions
This week, I cover Regular Expressions in Python! Please leave me a comment or question b...
published: 15 Feb 2014
Play in Full Screen
Add to Playlist
9:05
Using regular expressions in JavaScript
Link for all dot net and sql server video tutorial playlists http://www.youtube.com/user/k...
published: 24 Jan 2015
Play in Full Screen
Add to Playlist
11:28
Automata Theory - Lecture 5 - 1 - Regular Expressions
...
published: 26 Sep 2014
Play in Full Screen
Add to Playlist
8:00
Regular Expression to NFA
Humans can convert a regular expression to a DFA fairly easily using just a few heuristic ...
published: 15 May 2011
author: Barry Brown
Play in Full Screen
Add to Playlist
16:20
QTP Part 25 Regular Expression
Using Regular Expressions, changing window titles....
published: 26 Feb 2013
Play in Full Screen
Add to Playlist
6:36
Regex Howto : Dominate Your Code with Regular Expressions
Regular Expressions rock. They are an ultra-powerful search pattern language that almost a...
published: 06 Apr 2013
author: Nixie Pixel
Play in Full Screen
Add to Playlist
42:00
Google Python Class Day 2 Part 1
Google Python Class Day 2 Part 1: Regular Expressions. By Nick Parlante. Support ...
published: 01 Mar 2010
Play in Full Screen

Related Videos

Add to Playlist
63:50
Mod-02 Lec-13 REGULAR EXPRESSIONS , REGULAR EXPRESSIONS TO NFSA
Theory of Computation by Prof.Kamala Krithivasan,Department of Computer Science and Engine...
published: 05 Oct 2011
author: nptelhrd
Play in Full Screen
Add to Playlist
20:52
Perl part 4: Regular Expressions
Dr. Rob Edwards from San Diego State University discusses an introduction to using regular...
published: 12 Oct 2013
Play in Full Screen
Add to Playlist
52:19
UNIX Shell Regular Expressions and the sed and grep commands [English]
Done for a college assignment. Hope it helps!...
published: 21 Mar 2013
Play in Full Screen
Add to Playlist
12:31
FINITE AUTOMATA TO REGULAR EXPRESSION BY ARDEN'S THEOREM
FINITE AUTOMATA TO REGULAR EXPRESSION BY ARDEN'S THEOREM....
published: 07 Apr 2014
Play in Full Screen
Add to Playlist
11:52
Converting a DFA into a Regular Expression
For BYU CS252, Computational Theory. This is Dr. Michael Jones describing how to convert a...
published: 29 Jan 2014
Play in Full Screen
Add to Playlist
4:53
Regular Expression Examples
...
published: 13 Mar 2014
author: CSC236
Play in Full Screen
Add to Playlist
15:06
Compiler Design - Convert Regular Expression to NFA
...
published: 25 Dec 2013
Play in Full Screen
Add to Playlist
14:51
QTPWorld.com - QTP script using Regular Expression to find Email count in your Inbox.
This video explains how to use Regular Expression in QTP to find the email count in your G...
published: 30 Dec 2010
author: qtpworld
Play in Full Screen
Add to Playlist
42:50
Theory Of Computation Lecture 63--Conversion of Finite automata to Regular Expression and vice versa
Description....
published: 01 Jul 2014
Play in Full Screen
Add to Playlist
9:36
How to convert DFA to Regular expression? -Solved Example
An example to explain what to look for when converting a DFA to regular expression . Learn...
published: 30 May 2014
author: Unacademy
Play in Full Screen

In computing, a regular expression provides a concise and flexible means to "match" (specify and recognize) strings of text, such as particular characters, words, or patterns of characters. Common abbreviations for "regular expression" include regex and regexp. The concept of regular expressions was first popularized by utilities provided by Unix distributions, in particular the editor ed and the filter grep.[citation needed] A regular expression is written in a formal language that can be interpreted by a regular expression processor, which is a program that either serves as a parser generator or examines text and identifies parts that match the provided specification. Historically, the concept of regular expressions is associated with Kleene's formalism of regular sets, introduced in the 1950s.

The following are examples of specifications which can be expressed as a regular expression:

Regular expressions are used by many text editors, utilities, and programming languages to search and manipulate text based on patterns. Some of these languages, including Perl, Ruby, AWK, and Tcl, integrate regular expressions into the syntax of the core language itself. Other programming languages like .NET languages, Java, and Python instead provide regular expressions through standard libraries. For yet other languages, such as Object Pascal(Delphi) and C and C++, non-core libraries are available (however, version C++11 provides regular expressions in its Standard Libraries).




This page contains text from Wikipedia, the Free Encyclopedia - http://en.wikipedia.org/wiki/Regular_expression

This article is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License, which means that you can copy and modify it as long as the entire work (including additions) remains under this license.