Skip to content

Commit d04ba36

Browse files
committed
added link to regexper image and ACRL use cases, edited language about using pen/paper
1 parent 08ee197 commit d04ba36

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

_episodes/01-regular-expressions.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ So, what is `^[Oo]rgani.e\b` going to match?
6969
> > Organike
7070
> > ~~~
7171
> > 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`.
72+
> > [See solution visulaized on Regexper.com](https://regexper.com/#%5E%5BOo%5Drgani.e%5Cb)
7273
> {: .solution}
7374
{: .challenge}
7475
@@ -167,9 +168,10 @@ So, what are these going to match?
167168
> {: .solution}
168169
{: .challenge}
169170
170-
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.
171+
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/) .
171172
172-
To embed this knowledge we won't - however - be using computers. Instead we'll use pen and paper.
173+
174+
To embed this knowledge we won't - however - be using computers. Instead we'll use pen and paper for now.
173175
174176
175177
### Exercise

0 commit comments

Comments
 (0)