From d04ba369123e960a08dad5c7398e1c9d4289e750 Mon Sep 17 00:00:00 2001 From: kmm5 Date: Tue, 21 Jan 2020 14:07:04 -0500 Subject: [PATCH 1/3] added link to regexper image and ACRL use cases, edited language about using pen/paper --- _episodes/01-regular-expressions.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/_episodes/01-regular-expressions.md b/_episodes/01-regular-expressions.md index 8ac9acee..7923dc51 100644 --- a/_episodes/01-regular-expressions.md +++ b/_episodes/01-regular-expressions.md @@ -69,6 +69,7 @@ So, what is `^[Oo]rgani.e\b` going to match? > > Organike > > ~~~ > > Or, any other string that starts a line, begins with a letter `o` in lower or capital case, proceeds with `rgani`, has any character in the 7th position, and ends with the letter `e`. +> > [See solution visulaized on Regexper.com](https://regexper.com/#%5E%5BOo%5Drgani.e%5Cb) > {: .solution} {: .challenge} @@ -167,9 +168,10 @@ So, what are these going to match? > {: .solution} {: .challenge} -This logic is useful when you have lots of files in a directory, when those files have logical file names, and when you want to isolate a selection of files. It can be used for looking at cells in spreadsheets for certain values, or for extracting some data from a column of a spreadsheet to make new columns. There are many other contexts in which regex is useful when using a computer to search through a document, spreadsheet, or file structure. +This logic is useful when you have lots of files in a directory, when those files have logical file names, and when you want to isolate a selection of files. It can be used for looking at cells in spreadsheets for certain values, or for extracting some data from a column of a spreadsheet to make new columns. There are many other contexts in which regex is useful when using a computer to search through a document, spreadsheet, or file structure. Some real-world use cases for regex are included on an [ACRL Tech Connect blog](https://acrl.ala.org/techconnect/post/fear-no-longer-regular-expressions/) . -To embed this knowledge we won't - however - be using computers. Instead we'll use pen and paper. + +To embed this knowledge we won't - however - be using computers. Instead we'll use pen and paper for now. ### Exercise From ffaaf8fd845c477eb248bdc90358f403ef91a8cf Mon Sep 17 00:00:00 2001 From: kmm5 Date: Tue, 21 Jan 2020 14:07:24 -0500 Subject: [PATCH 2/3] fixed language about not needing computer --- index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.md b/index.md index a3c33065..f0404afc 100644 --- a/index.md +++ b/index.md @@ -11,5 +11,5 @@ This Library Carpentry lesson introduces people with library- and information-re > ## Prerequisites > -> This lesson has no prerequisites. Ideally you will need a laptop and an internet connection, though this is not required. +> This lesson has no prerequisites. You will need a laptop and an internet connection to complete Episode 2. {: .prereq} From 9703fb4e10a721b00a38552815386c1467224f83 Mon Sep 17 00:00:00 2001 From: kmm5 Date: Mon, 3 Feb 2020 09:06:49 -0500 Subject: [PATCH 3/3] fixed regexper link --- _episodes/01-regular-expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_episodes/01-regular-expressions.md b/_episodes/01-regular-expressions.md index 7923dc51..174a090f 100644 --- a/_episodes/01-regular-expressions.md +++ b/_episodes/01-regular-expressions.md @@ -69,7 +69,7 @@ So, what is `^[Oo]rgani.e\b` going to match? > > Organike > > ~~~ > > Or, any other string that starts a line, begins with a letter `o` in lower or capital case, proceeds with `rgani`, has any character in the 7th position, and ends with the letter `e`. -> > [See solution visulaized on Regexper.com](https://regexper.com/#%5E%5BOo%5Drgani.e%5Cb) +> > [See solution visulaized on Regexper.com](https://regexper.com/#%5E%5BOo%5Drgani.e) > {: .solution} {: .challenge}