Regular Expression. n What is Regex? n Meta characters. n Pattern matching. n Functions in re module. n Usage of regex object. n String substitution
|
|
|
- Annabel Crawford
- 9 years ago
- Views:
Transcription
1 Regular Expression n What is Regex? n Meta characters n Pattern matching n Functions in re module n Usage of regex object n String substitution
2 What is regular expression? n String search n (e.g.) Find integer/float numbers in the given string given below. 123ABC D D.E024 n Regular Expression (i.e., Regex) n Define search, extraction, substitution of string patterns n Python supports own regex module - re
3 Meta characters n Meta characters? n Control characters that describe string patterns, rather than strings themselves n Repeating meta characters character meaning e.g. * 0 or more ca*t è ct, cat, caat, caaaaaat + 1 or more ca+t è cat, caat, caaaat? 0 or 1 ca?t è ct, cat {m} m times ca{2} è caa {m, n} At least m, at most n ca{2,4} è caat, caaat, caaaat
4 Matching meta characters Meta character meaning. Match all characters except the new line character re.dotall can match all characters. ^ 1. Matches the first character of the class 2. Matches beginning of each line in re.multiline 3. Used for complementing the set if used in [] $ 1. Matches the last character of the class 2. Used as $ character itself if used in [] [] Indicates a selective character set A B means A or B. () Used for grouping regex
5 Match n match(pattern, string [, flags]) n n (e.g.) Return: if matched, return matched object else, return None >>> import re >>> re.match( [0-9], 1234 ) <SRE_Match object at 00A03330> >>> re.match( [0-9], abc ) >>>
6 Match (more examples) >>> m = re.match( [0-9], 1234 ) >>> m.group() 1 >>> m = re.match( [0-9]+, 1234 ) >>> m.group() 1234 >>> m = re.match( [0-9]+, 1234 ) >>> m.group() 1234 >>> re.match( [0-9]+, 1234 ) >>> re.match(r [ \t]*[0-9]+, 123 ) <_sre.sre_match object at.>
7 (pre-defined) special symbols symbol meaning equivalence \\ Backslash (i.e., \ ) itself \d Matches any decimal digit [0-9] \D Matches any non-digit characters [^0-9] \s Matches any whitespace character [ \t\n\r\f\v] \S Matches any non-whitespace character [^ t\n\r\f\v] \w Matches any alphanumeric character [a-za-z0-9_] \W Matches any non-alphanumeric character [^a-za-z0-9_] \b Indicates boundary of a string \B Indicates no boundary of a string
8 (e.g) special symbols >>> m = re.match( \s*\d+, 123 ) >>> m.group() 123 >>> m = re.match( \s*(\d+), 1234 ) >>> m.group(1) 1234
9 Search n Match vs. Search n n Match from the beginning of a string Search partial string match in any position n Search(pattern, string [, flags]) n (e.g) >>> re.search( \d+, 1034 ).group() 1034 >>> re.search( \d+, abc123 ).group() 123
10 Regex in raw mode >>> \d \\d >>> \s \\s >>> \b \x08 >>> \\b \\b >>> r \b \\b
11 >>> \\ \\ >>> r \\ \\\\ >>> re.search( \\\\, \ ).group() \\ >>> re.search(r \\, \ ).group() \\
12 Greedy/non-greedy matching n Non-greedy matching Symbol Meaning *? * with non-greedy matching +? + with non-greedy matching??? With non-greedy matching {m, n}? {m, n} with non-greedy matching
13 Greedy/non-greedy (e.g.) >>> s = <a href= index.html >HERE</a><font size= 10 > >>> re.search(r href= (.*), s).group(1) index.html >HERE</a><font size= 10 >>> re.search(r href= (.*?), s).group(1) index.html
14 Extracting matched string n Mathods in match() object Method Return group() Matched strings start() end() span() Starting position of matched string Ending position of matched string Tuple of (starting, ending) of matched string
15 Extracting matched string (cont.) n Group()-related methods Method group() return whole strings matched group(n) N-th matched string. group(0) is equivalent to group() groups() All strings matched in a tuple format
16 E.g., Group() >>> m = re.match(r (\d+)(\w+)(\d+), 123abc456 ) >>> m.group() 123abc456 >>> m.group(0) >>> m.group() 123abc456 ( 123, abc45, 6 ) >>> m.group(1) >>> m.start() >>> m.group(2) >>> m.end() abc45 9 >>> m.group(3) >>>m.span() 6 (0, 9)
17 E.g. group() (cont.) >>> m = re.match( (a(b(c)) (d)), abcd ) >>> m.group(0) abcd >>> m.group(1) abcd >>> m.group(2) bc >>> m.group(3) c >>> m.group(4) d
18 Group name n Pattern: (?P<name>regex) n Name: group name n Regex: regular expression n (e.g.) >>> m = re.match(r (?P<var>[_a-zA-Z]\w*)\s* =\s*(?p<num>\d+), a = 123 ) >>> m.group( var ) a >>> m.group( num ) 123 >>> m.group() a = 1 2 3
19 Methods in re module Method compile(pattern [, flags]) search(pattern, string [, flags]) match(patterns, sting [, flags]) split(pattern, string [, maxsplit=0]) findall(pattern, string) sub(pattern, repl, string [, count=0]) function compile search match from the begining split extracting all strings matched substitute pattern with repl subn(pattern,repl, string [, count=0]) substitute with count times escape(string) add backslash to nonalphanumeric strings
20 Re.split(pattern, string [, maxsplit=0]) >>> re.split( \W+, apple, orange and spam. ) [ apple, orange, and, spam, ] >>> re.split( (\W+), apple, orange and spam. ) [ apple,,, orange,, and,, spam,., ] >>> re.split( \W}, apple, orange and spam., 1) [ apple, orange and spam. ] >>> re.split( \W}, apple, orange and spam., 2) [ apple, orange, and spam. ] >>> re.split( \W}, apple, orange and spam., 3) [ apple, orange, and, spam. ]
21 findall(pattern, string) >>> re.findall(r [_a-za-z]\w*, 123 abc 123 def ) [ abc, def ] >>> s = <a href= link1.html >link1</a> <a href= link2.html >link2</a> <a href= link3.html >link3</a> >>> re.findall(r herf= (.*?), s) [ link1.html, link2.html, link3.html ]
22 compile(patern [, flags]) n Returns a regex object that is compiled n Useful for repeated many times n (e.g) >>> p = re.compile(r ([_a-za-z]\w*\s*=\s*(\d+) ) >>> m = p.match( a = 123 ) >>> m.groups() ( a, 123 ) >>> m.group(1) a >>> m.group(2) 123
23 Flags for regex object flag meaning I, IGNORECASE Ignore case of characters L, LOCALE \w, \W, \b, \B are affected by current locale M, MULTILINE ^ and $ are applied to the beginning and end of each string S, DOTALL. Matches new line character (i.e., \n) as well U, UNICODE \w, \W, \b, \B are processed according to unicode X, VERBOSE Blanks inside regex are ignored. Backslash(\) needs to be used to consider blanks. # can be used for comments
24 E.g. >>> import re >>> p = re.compile( the, re.i) >>> p.findall( The cat was hungry. They were scared because of the cat ) [ The, The, the ]
25 Methods of Regex object Method search(string [, pos [, endpos]]) match(string [, pos [, endpos]]) split(string [, maxsplit = 0]) findall(string) sub(repl, string [, count =0]) subn(repl, string [, count = 0]) meaning search match from the begining re.split() re.findall() re.sub() re.subn()
26 Search(string [, pos [, endpos]]) >>> t = My ham, my egg, my spam >>> p = re.compiile( (my), re.i) >>> pos = 0 >>> while 1: m = p.search(t, pos) if m: print m.group(1) pos = m.end() else: break My my my
27 Sub(repl, string [, count = 0]) >>> re.sub(r [.,:;],, a:b;c, d. ) abc d >>> re.sub(r \W,, a:b:c, d. ) abcd
28 {\n}, {g\<n>}: substitute with string of group n >>> p = re.compile( section{ ( [^}]* ) }, re.verbose) >>> p.sub(r subsection{\1}, section{first} section{second} ) subsection{first} subsection{second}
29 {\g<name>}: substitute with group name >>> p = re.compile( section{ (?P<name> [^}]* ) }, re.verbose) >>> p.sub(r subsection{\g<name>}, section{first} ) subsection{first}
30 Substitute with function >>> def hexrepl( match): value = int (match.group()) return hex(value) >>> p = re.compile(r \d+ ) >>> p.sub(hexrepl, Call for printing, for user code. ) Call 0xffd2 for printing, 0xc000 for user code.
Lecture 18 Regular Expressions
Lecture 18 Regular Expressions Many of today s web applications require matching patterns in a text document to look for specific information. A good example is parsing a html file to extract tags
Regular Expressions. Chapter 11. Python for Informatics: Exploring Information www.pythonlearn.com
Regular Expressions Chapter 11 Python for Informatics: Exploring Information www.pythonlearn.com Regular Expressions In computing, a regular expression, also referred to as regex or regexp, provides a
University Convocation. IT 3203 Introduction to Web Development. Pattern Matching. Why Match Patterns? The Search Method. The Replace Method
IT 3203 Introduction to Web Development Regular Expressions October 12 Notice: This session is being recorded. Copyright 2007 by Bob Brown University Convocation Tuesday, October 13, 11:00 AM 12:15 PM
Python: Regular Expressions
Python: Regular Expressions Bruce Beckles Bob Dowling University Computing Service Scientific Computing Support e-mail address: [email protected] 1 Welcome to the University Computing
Programming Languages CIS 443
Course Objectives Programming Languages CIS 443 0.1 Lexical analysis Syntax Semantics Functional programming Variable lifetime and scoping Parameter passing Object-oriented programming Continuations Exception
Regular Expressions Overview Suppose you needed to find a specific IPv4 address in a bunch of files? This is easy to do; you just specify the IP
Regular Expressions Overview Suppose you needed to find a specific IPv4 address in a bunch of files? This is easy to do; you just specify the IP address as a string and do a search. But, what if you didn
Regular Expressions for Natural Language Processing
Regular Expressions for Natural Language Processing Steven Bird Ewan Klein 2006-01-29 Version: 0.6.2 Revision: 1.13 Copyright: c 2001-2006 University of Pennsylvania License: Creative Commons Attribution-ShareAlike
Content of this lecture. Regular Expressions in Java. Hello, world! In Java. Programming in Java
Content of this lecture Regular Expressions in Java 2010-09-22 Birgit Grohe A very small Java program Regular expressions in Java Metacharacters Character classes and boundaries Quantifiers Backreferences
Chapter 2 Writing Simple Programs
Chapter 2 Writing Simple Programs Charles Severance Textbook: Python Programming: An Introduction to Computer Science, John Zelle Software Development Process Figure out the problem - for simple problems
Mastering Python Regular Expressions
Mastering Python Regular Expressions Félix López Víctor Romero Chapter No. 3 "Grouping" In this package, you will find: A Biography of the authors of the book A preview chapter from the book, Chapter NO.3
Exploring Regular Expression Usage and Context in Python
Exploring Regular Expression Usage and Context in Python Carl Chapman Department of Computer Science Iowa State University Ames, IA, USA [email protected] Kathryn T. Stolee Departments of Computer Science
Compiler Construction
Compiler Construction Regular expressions Scanning Görel Hedin Reviderad 2013 01 23.a 2013 Compiler Construction 2013 F02-1 Compiler overview source code lexical analysis tokens intermediate code generation
6.170 Tutorial 3 - Ruby Basics
6.170 Tutorial 3 - Ruby Basics Prerequisites 1. Have Ruby installed on your computer a. If you use Mac/Linux, Ruby should already be preinstalled on your machine. b. If you have a Windows Machine, you
Regular Expression Syntax
1 of 5 12/22/2014 9:55 AM EmEditor Home - EmEditor Help - How to - Search Regular Expression Syntax EmEditor regular expression syntax is based on Perl regular expression syntax. Literals All characters
Lecture 4. Regular Expressions grep and sed intro
Lecture 4 Regular Expressions grep and sed intro Previously Basic UNIX Commands Files: rm, cp, mv, ls, ln Processes: ps, kill Unix Filters cat, head, tail, tee, wc cut, paste find sort, uniq comm, diff,
Regular Expressions for Perl, C, PHP, Python, Java, and.net. Regular Expression. Pocket Reference. Tony Stubblebine
Regular Expressions for Perl, C, PHP, Python, Java, and.net Regular Expression Pocket Reference Tony Stubblebine Regular Expression Pocket Reference Regular Expression Pocket Reference Tony Stubblebine
Python Lists and Loops
WEEK THREE Python Lists and Loops You ve made it to Week 3, well done! Most programs need to keep track of a list (or collection) of things (e.g. names) at one time or another, and this week we ll show
We will learn the Python programming language. Why? Because it is easy to learn and many people write programs in Python so we can share.
LING115 Lecture Note Session #4 Python (1) 1. Introduction As we have seen in previous sessions, we can use Linux shell commands to do simple text processing. We now know, for example, how to count words.
Viewing Web Pages In Python. Charles Severance - www.dr-chuck.com
Viewing Web Pages In Python Charles Severance - www.dr-chuck.com What is Web Scraping? When a program or script pretends to be a browser and retrieves web pages, looks at those web pages, extracts information
Kiwi Log Viewer. A Freeware Log Viewer for Windows. by SolarWinds, Inc.
Kiwi Log Viewer A Freeware Log Viewer for Windows by SolarWinds, Inc. Kiwi Log Viewer displays text based log files in a tabular format. Only a small section of the file is read from disk at a time which
ESCI 386 Scientific Programming, Analysis and Visualization with Python. Lesson 5 Program Control
ESCI 386 Scientific Programming, Analysis and Visualization with Python Lesson 5 Program Control 1 Interactive Input Input from the terminal is handled using the raw_input() function >>> a = raw_input('enter
CSE 341 Lecture 28. Regular expressions. slides created by Marty Stepp http://www.cs.washington.edu/341/
CSE 341 Lecture 28 Regular expressions slides created by Marty Stepp http://www.cs.washington.edu/341/ Influences on JavaScript Java: basic syntax, many type/method names Scheme: first-class functions,
Lexical analysis FORMAL LANGUAGES AND COMPILERS. Floriano Scioscia. Formal Languages and Compilers A.Y. 2015/2016
Master s Degree Course in Computer Engineering Formal Languages FORMAL LANGUAGES AND COMPILERS Lexical analysis Floriano Scioscia 1 Introductive terminological distinction Lexical string or lexeme = meaningful
public static void main(string[] args) { System.out.println("hello, world"); } }
Java in 21 minutes hello world basic data types classes & objects program structure constructors garbage collection I/O exceptions Strings Hello world import java.io.*; public class hello { public static
Introduction to Java Applications. 2005 Pearson Education, Inc. All rights reserved.
1 2 Introduction to Java Applications 2.2 First Program in Java: Printing a Line of Text 2 Application Executes when you use the java command to launch the Java Virtual Machine (JVM) Sample program Displays
Introduction to Python
WEEK ONE Introduction to Python Python is such a simple language to learn that we can throw away the manual and start with an example. Traditionally, the first program to write in any programming language
Number Representation
Number Representation CS10001: Programming & Data Structures Pallab Dasgupta Professor, Dept. of Computer Sc. & Engg., Indian Institute of Technology Kharagpur Topics to be Discussed How are numeric data
Computational Mathematics with Python
Boolean Arrays Classes Computational Mathematics with Python Basics Olivier Verdier and Claus Führer 2009-03-24 Olivier Verdier and Claus Führer Computational Mathematics with Python 2009-03-24 1 / 40
Web Design and Development ACS-1809. Chapter 7. Working with Links
Web Design and Development ACS-1809 Chapter 7 Working with Links 1 Working with Links Add Links to Other Web Pages Add Links to Sections Within the Same Web Page Add Links to E-Mail Addresses and Downloadable
Conditionals (with solutions)
Conditionals (with solutions) For exercises 1 to 27, indicate the output that will be produced. Assume the following declarations: final int MAX = 25, LIMIT = 100; int num1 = 12, num2 = 25, num3 = 87;
Interspire Website Publisher Developer Documentation. Template Customization Guide
Interspire Website Publisher Developer Documentation Template Customization Guide Table of Contents Introduction... 1 Template Directory Structure... 2 The Style Guide File... 4 Blocks... 4 What are blocks?...
Introduction to Searching with Regular Expressions
Introduction to Searching with Regular Expressions Christopher M. Frenz Department of Computer Engineering Technology New York City College of Technology (CUNY) 300 Jay St Brooklyn, NY 11201 Email: [email protected]
NiCE Log File Management Pack. for. System Center Operations Manager 2012. Quick Start Guide
NiCE Log File Management Pack for System Center Operations Manager 2012 Version 1.30 March 2015 Quick Start Guide Legal Notices NiCE IT Management Solutions GmbH makes no warranty of any kind with regard
Computational Mathematics with Python
Computational Mathematics with Python Basics Claus Führer, Jan Erik Solem, Olivier Verdier Spring 2010 Claus Führer, Jan Erik Solem, Olivier Verdier Computational Mathematics with Python Spring 2010 1
awk A UNIX tool to manipulate and generate formatted data
awk A UNIX tool to manipulate and generate formatted data Alexander Voigt Technische Universität Dresden Institut für Kern- und Teilchenphysik Version_05_21 /01234/546 78994: IKTP Computing Kaffee 10 January
Being Regular with Regular Expressions. John Garmany Session
Being Regular with Regular Expressions John Garmany Session John Garmany Senior Consultant Burleson Consulting Who Am I West Point Graduate GO ARMY! Masters Degree Information Systems Graduate Certificate
CS106A, Stanford Handout #38. Strings and Chars
CS106A, Stanford Handout #38 Fall, 2004-05 Nick Parlante Strings and Chars The char type (pronounced "car") represents a single character. A char literal value can be written in the code using single quotes
Informatica e Sistemi in Tempo Reale
Informatica e Sistemi in Tempo Reale Introduction to C programming Giuseppe Lipari http://retis.sssup.it/~lipari Scuola Superiore Sant Anna Pisa October 25, 2010 G. Lipari (Scuola Superiore Sant Anna)
Lecture 2, Introduction to Python. Python Programming Language
BINF 3360, Introduction to Computational Biology Lecture 2, Introduction to Python Young-Rae Cho Associate Professor Department of Computer Science Baylor University Python Programming Language Script
United States Naval Academy Electrical and Computer Engineering Department. EC262 Exam 1
United States Naval Academy Electrical and Computer Engineering Department EC262 Exam 29 September 2. Do a page check now. You should have pages (cover & questions). 2. Read all problems in their entirety.
Chapter 3 Writing Simple Programs. What Is Programming? Internet. Witin the web server we set lots and lots of requests which we need to respond to
Chapter 3 Writing Simple Programs Charles Severance Unless otherwise noted, the content of this course material is licensed under a Creative Commons Attribution 3.0 License. http://creativecommons.org/licenses/by/3.0/.
Pemrograman Dasar. Basic Elements Of Java
Pemrograman Dasar Basic Elements Of Java Compiling and Running a Java Application 2 Portable Java Application 3 Java Platform Platform: hardware or software environment in which a program runs. Oracle
The Clean programming language. Group 25, Jingui Li, Daren Tuzi
The Clean programming language Group 25, Jingui Li, Daren Tuzi The Clean programming language Overview The Clean programming language first appeared in 1987 and is still being further developed. It was
Grinder Webtest Documentation
Grinder Webtest Documentation Release 0.1 Automation Excellence March 15, 2012 CONTENTS i ii You are reading the documentation for Grinder Webtest, a custom module for the Grinder load test framework
The C Programming Language course syllabus associate level
TECHNOLOGIES The C Programming Language course syllabus associate level Course description The course fully covers the basics of programming in the C programming language and demonstrates fundamental programming
Regular Expressions and Pattern Matching [email protected]
Regular Expressions and Pattern Matching [email protected] Regular Expression (regex): a separate language, allowing the construction of patterns. used in most programming languages. very powerful
ANNEXURE - I. Back-office Interfaces
ANNEXURE - I Back-office Interfaces I. Corporate Action Master Export Utility Input criteria The following two options would be available to extract this master information. 1. Full Export: In this case,
Regular Expressions. General Concepts About Regular Expressions
Regular Expressions This appendix explains regular expressions and how to use them in Cisco IOS software commands. It also provides details for composing regular expressions. This appendix has the following
Analog Documentation. Release 0.3.4. Fabian Büchler
Analog Documentation Release 0.3.4 Fabian Büchler April 01, 2014 Contents 1 Contents 3 1.1 Quickstart................................................ 3 1.2 Analog API................................................
Introduction to Java. CS 3: Computer Programming in Java
Introduction to Java CS 3: Computer Programming in Java Objectives Begin with primitive data types Create a main class with helper methods Learn how to call built-in class methods and instance methods
Introduction to Java
Introduction to Java The HelloWorld program Primitive data types Assignment and arithmetic operations User input Conditional statements Looping Arrays CSA0011 Matthew Xuereb 2008 1 Java Overview A high
Topics. Parts of a Java Program. Topics (2) CS 146. Introduction To Computers And Java Chapter Objectives To understand:
Introduction to Programming and Algorithms Module 2 CS 146 Sam Houston State University Dr. Tim McGuire Introduction To Computers And Java Chapter Objectives To understand: the meaning and placement of
Some Scanner Class Methods
Keyboard Input Scanner, Documentation, Style Java 5.0 has reasonable facilities for handling keyboard input. These facilities are provided by the Scanner class in the java.util package. A package is a
SPSS INSTRUCTION CHAPTER 1
SPSS INSTRUCTION CHAPTER 1 Performing the data manipulations described in Section 1.4 of the chapter require minimal computations, easily handled with a pencil, sheet of paper, and a calculator. However,
JAVA - QUICK GUIDE. Java SE is freely available from the link Download Java. So you download a version based on your operating system.
http://www.tutorialspoint.com/java/java_quick_guide.htm JAVA - QUICK GUIDE Copyright tutorialspoint.com What is Java? Java is: Object Oriented Platform independent: Simple Secure Architectural- neutral
Writing Functions in Scheme. Writing Functions in Scheme. Checking My Answer: Empty List. Checking My Answer: Empty List
Writing Functions in Scheme Writing Functions in Scheme Suppose we want a function ct which takes a list of symbols and returns the number of symbols in the list (ct (a b c)) 3 (ct ()) 0 (ct (x y z w t))
Introduction to: Computers & Programming: Input and Output (IO)
Introduction to: Computers & Programming: Input and Output (IO) Adam Meyers New York University Summary What is Input and Ouput? What kinds of Input and Output have we covered so far? print (to the console)
Why is Internal Audit so Hard?
Why is Internal Audit so Hard? 2 2014 Why is Internal Audit so Hard? 3 2014 Why is Internal Audit so Hard? Waste Abuse Fraud 4 2014 Waves of Change 1 st Wave Personal Computers Electronic Spreadsheets
Python. KS3 Programming Workbook. Name. ICT Teacher Form. Do you speak Parseltongue?
Python KS3 Programming Workbook Do you speak Parseltongue? Name ICT Teacher Form Welcome to Python The python software has two windows that we will use. The main window is called the Python Shell and allows
User-ID Features. PAN-OS New Features Guide Version 6.0. Copyright 2007-2015 Palo Alto Networks
User-ID Features PAN-OS New Features Guide Version 6.0 Contact Information Corporate Headquarters: Palo Alto Networks 4401 Great America Parkway Santa Clara, CA 95054 http://www.paloaltonetworks.com/contact/contact/
Problems and Measures Regarding Waste 1 Management and 3R Era of public health improvement Situation subsequent to the Meiji Restoration
PYTHON Basics http://hetland.org/writing/instant-hacking.html
CWCS Workshop May 2009 PYTHON Basics http://hetland.org/writing/instant-hacking.html Python is an easy to learn, modern, interpreted, object-oriented programming language. It was designed to be as simple
Regular Expressions. The Complete Tutorial. Jan Goyvaerts
Regular Expressions The Complete Tutorial Jan Goyvaerts Regular Expressions: The Complete Tutorial Jan Goyvaerts Copyright 2006, 2007 Jan Goyvaerts. All rights reserved. Last updated July 2007. No part
A Python Tour: Just a Brief Introduction CS 303e: Elements of Computers and Programming
A Python Tour: Just a Brief Introduction CS 303e: Elements of Computers and Programming "The only way to learn a new programming language is by writing programs in it." -- B. Kernighan and D. Ritchie "Computers
ChildFreq: An Online Tool to Explore Word Frequencies in Child Language
LUCS Minor 16, 2010. ISSN 1104-1609. ChildFreq: An Online Tool to Explore Word Frequencies in Child Language Rasmus Bååth Lund University Cognitive Science Kungshuset, Lundagård, 222 22 Lund [email protected]
CS177 MIDTERM 2 PRACTICE EXAM SOLUTION. Name: Student ID:
CS177 MIDTERM 2 PRACTICE EXAM SOLUTION Name: Student ID: This practice exam is due the day of the midterm 2 exam. The solutions will be posted the day before the exam but we encourage you to look at the
Numeral Systems. The number twenty-five can be represented in many ways: Decimal system (base 10): 25 Roman numerals:
Numeral Systems Which number is larger? 25 8 We need to distinguish between numbers and the symbols that represent them, called numerals. The number 25 is larger than 8, but the numeral 8 above is larger
pyownet Documentation
pyownet Documentation Release 0.10.0 Stefano Miccoli March 30, 2016 Contents 1 Contents 3 1.1 Introduction............................................. 3 1.2 Installation..............................................
monoseq Documentation
monoseq Documentation Release 1.2.1 Martijn Vermaat July 16, 2015 Contents 1 User documentation 3 1.1 Installation................................................ 3 1.2 User guide................................................
CS 1133, LAB 2: FUNCTIONS AND TESTING http://www.cs.cornell.edu/courses/cs1133/2015fa/labs/lab02.pdf
CS 1133, LAB 2: FUNCTIONS AND TESTING http://www.cs.cornell.edu/courses/cs1133/2015fa/labs/lab02.pdf First Name: Last Name: NetID: The purpose of this lab is to help you to better understand functions:
Hands-On Python A Tutorial Introduction for Beginners Python 3.1 Version
Hands-On Python A Tutorial Introduction for Beginners Python 3.1 Version Dr. Andrew N. Harrington Computer Science Department, Loyola University Chicago Released under the Creative commons Attribution-Noncommercial-Share
Apache Cassandra Query Language (CQL)
REFERENCE GUIDE - P.1 ALTER KEYSPACE ALTER TABLE ALTER TYPE ALTER USER ALTER ( KEYSPACE SCHEMA ) keyspace_name WITH REPLICATION = map ( WITH DURABLE_WRITES = ( true false )) AND ( DURABLE_WRITES = ( true
Bachelors of Computer Application Programming Principle & Algorithm (BCA-S102T)
Unit- I Introduction to c Language: C is a general-purpose computer programming language developed between 1969 and 1973 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating
More Tales from the Help Desk: Solutions for Simple SAS Mistakes Bruce Gilsen, Federal Reserve Board
More Tales from the Help Desk: Solutions for Simple SAS Mistakes Bruce Gilsen, Federal Reserve Board INTRODUCTION In 20 years as a SAS consultant at the Federal Reserve Board, I have seen SAS users make
Auto Generate Purchase Orders from S/O Entry SO-1489
Auto Generate Purchase Orders from S/O Entry SO-1489 Overview This Extended Solution to the Sales Order module adds a 'Create PO' Button to Sales Order entry Totals tab which allows you to create Purchase
Using PRX to Search and Replace Patterns in Text Strings
Paper CC06 Using PRX to Search and Replace Patterns in Text Strings Wenyu Hu, Merck Research Labs, Merck & Co., Inc., Upper Gwynedd, PA Liping Zhang, Merck Research Labs, Merck & Co., Inc., Upper Gwynedd,
Automata Theory. Şubat 2006 Tuğrul Yılmaz Ankara Üniversitesi
Automata Theory Automata theory is the study of abstract computing devices. A. M. Turing studied an abstract machine that had all the capabilities of today s computers. Turing s goal was to describe the
How To Port A Program To Dynamic C (C) (C-Based) (Program) (For A Non Portable Program) (Un Portable) (Permanent) (Non Portable) C-Based (Programs) (Powerpoint)
TN203 Porting a Program to Dynamic C Introduction Dynamic C has a number of improvements and differences compared to many other C compiler systems. This application note gives instructions and suggestions
Exercise 4 Learning Python language fundamentals
Exercise 4 Learning Python language fundamentals Work with numbers Python can be used as a powerful calculator. Practicing math calculations in Python will help you not only perform these tasks, but also
1.1 AppleScript Basics
13Working with AppleScript This guide provides helpful information and examples for using AppleScript to automate the Macintosh version of KaleidaGraph. A variety of sample scripts, from basic to complex,
Interfacing the ABS Software. With An. MRP or ERP System
Interfacing the ABS Software With An MRP or ERP System February 24, 2014 Tube City IMS, LLC Optimization Group 833 W. Lincoln Highway Suite 310W Schererville, IN 46375 219 864 0044 www.tubecityims.com
[1] Learned how to set up our computer for scripting with python et al. [3] Solved a simple data logistics problem using natural language/pseudocode.
Last time we... [1] Learned how to set up our computer for scripting with python et al. [2] Thought about breaking down a scripting problem into its constituent steps. [3] Solved a simple data logistics
Python for Economists
Python for Economists Alex Bell Alexander [email protected] Originally prepared for staff of the Federal Trade Commission s Bureau of Economics, July 2012. http://xkcd.com/353 Contents 1 Introduction to Python
Obfuscation: know your enemy
Obfuscation: know your enemy Ninon EYROLLES [email protected] Serge GUELTON [email protected] Prelude Prelude Plan 1 Introduction What is obfuscation? 2 Control flow obfuscation 3 Data flow
Introduction to Apache Pig Indexing and Search
Large-scale Information Processing, Summer 2014 Introduction to Apache Pig Indexing and Search Emmanouil Tzouridis Knowledge Mining & Assessment Includes slides from Ulf Brefeld: LSIP 2013 Organizational
Computers. An Introduction to Programming with Python. Programming Languages. Programs and Programming. CCHSG Visit June 2014. Dr.-Ing.
Computers An Introduction to Programming with Python CCHSG Visit June 2014 Dr.-Ing. Norbert Völker Many computing devices are embedded Can you think of computers/ computing devices you may have in your
Compilers Lexical Analysis
Compilers Lexical Analysis SITE : http://www.info.univ-tours.fr/ mirian/ TLC - Mírian Halfeld-Ferrari p. 1/3 The Role of the Lexical Analyzer The first phase of a compiler. Lexical analysis : process of
Slides from INF3331 lectures - web programming in Python
Slides from INF3331 lectures - web programming in Python Joakim Sundnes & Hans Petter Langtangen Dept. of Informatics, Univ. of Oslo & Simula Research Laboratory October 2013 Programming web applications
Time Clock Import Setup & Use
Time Clock Import Setup & Use Document # Product Module Category CenterPoint Payroll Processes (How To) This document outlines how to setup and use of the Time Clock Import within CenterPoint Payroll.
Introduction Header Body content Todo List. Email Analysis. Joe Huang Anti-Spam Team Cellopoint. February 21, 2014. Joe Huang Email Analysis 1 / 62
Email Analysis Joe Huang Anti-Spam Team Cellopoint February 21, 2014 Joe Huang Email Analysis 1 / 62 Joe Huang Email Analysis 2 / 62 For spam filtering, we would like to study the content of an email to
Computer Programming Tutorial
Computer Programming Tutorial COMPUTER PROGRAMMING TUTORIAL by tutorialspoint.com tutorialspoint.com i ABOUT THE TUTORIAL Computer Prgramming Tutorial Computer programming is the act of writing computer
Programming a mathematical formula. INF1100 Lectures, Chapter 1: Computing with Formulas. How to write and run the program.
5mm. Programming a mathematical formula INF1100 Lectures, Chapter 1: Computing with Formulas Hans Petter Langtangen We will learn programming through examples The first examples involve programming of
03 - Lexical Analysis
03 - Lexical Analysis First, let s see a simplified overview of the compilation process: source code file (sequence of char) Step 2: parsing (syntax analysis) arse Tree Step 1: scanning (lexical analysis)
Compilers. Introduction to Compilers. Lecture 1. Spring term. Mick O Donnell: [email protected] Alfonso Ortega: alfonso.ortega@uam.
Compilers Spring term Mick O Donnell: [email protected] Alfonso Ortega: [email protected] Lecture 1 to Compilers 1 Topic 1: What is a Compiler? 3 What is a Compiler? A compiler is a computer
BACKSCATTER PROTECTION AGENT Version 1.1 documentation
BACKSCATTER PROTECTION AGENT Version 1.1 documentation Revision 1.3 (for ORF version 5.0) Date June 3, 2012 INTRODUCTION What is backscatter? Backscatter (or reverse NDR ) attacks occur when a spammer
