From 54dfbbd040589610ed15c8e6c007a7096c2a36b2 Mon Sep 17 00:00:00 2001 From: Kevin French Date: Sat, 1 Jul 2023 15:44:49 -0400 Subject: [PATCH 1/2] Update 01-regular-expressions.md --- 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 a5102a10..555589a2 100644 --- a/episodes/01-regular-expressions.md +++ b/episodes/01-regular-expressions.md @@ -261,7 +261,7 @@ Or, any other string that begins with a letter `o` in lower or capital case afte :::::::::::::::::::::::::::::::::::::::::::::::::: -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 a [Library Hat blog post](https://www.bohyunkim.net/blog/archives/2595#.YTc3rzeSkUo) . +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 a [Library Hat blog post](http://www.bohyunkim.net/blog/archives/2595) . To embed this knowledge we will not - however - be using computers. Instead we'll use pen and paper for now. From 6c61733a0e0502475e9a6f98f0cbd2b17146ee25 Mon Sep 17 00:00:00 2001 From: Kevin French Date: Mon, 3 Jul 2023 06:29:51 -0400 Subject: [PATCH 2/2] Update 01-regular-expressions.md --- 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 555589a2..7ea77d49 100644 --- a/episodes/01-regular-expressions.md +++ b/episodes/01-regular-expressions.md @@ -261,7 +261,7 @@ Or, any other string that begins with a letter `o` in lower or capital case afte :::::::::::::::::::::::::::::::::::::::::::::::::: -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 a [Library Hat blog post](http://www.bohyunkim.net/blog/archives/2595) . +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 a [ACRL Tech Connect blog post](https://acrl.ala.org/techconnect/post/fear-no-longer-regular-expressions/) . To embed this knowledge we will not - however - be using computers. Instead we'll use pen and paper for now.