You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ For a preview of the book, see [sample chapters](./sample_chapters/Python_Regex_
31
31
32
32
The book can also be [viewed as a single markdown file in this repo](./py_regex.md). See my blogpost on [generating pdf from markdown using pandoc](https://learnbyexample.github.io/tutorial/ebook-generation/customizing-pandoc/) if you are interested in the ebook creation process.
33
33
34
-
For online `html` version of the book, visit https://learnbyexample.github.io/py_regular_expressions/
34
+
For web version of the book, visit https://learnbyexample.github.io/py_regular_expressions/
***Hugh**'s email exchanges helped me significantly to improve the presentation of concepts and exercises
84
84
*[Christopher Patti](https://github.com/feoh) for reviewing the book, providing feedback and brightening the day with kind words
85
85
* Users **73tada**, **DrBobHope**, **nlomb** and others for feedback in [this reddit thread](https://www.reddit.com/r/learnpython/comments/hmvnt1/my_python_regex_ebook_with_hundreds_of_examples/)
86
-
*[mdBook](https://github.com/rust-lang/mdBook) — for `html` version of the book
86
+
*[mdBook](https://github.com/rust-lang/mdBook) — for web version of the book
87
+
*[mdBook-pagetoc](https://github.com/JorelAli/mdBook-pagetoc) — for adding table of contents for each chapter
88
+
*[minify-html](https://github.com/wilsonzlin/minify-html) — for minifying html files
87
89
88
90
Special thanks to Al Sweigart, for introducing me to Python with his awesome [automatetheboringstuff](https://automatetheboringstuff.com/) book and video course.
Copy file name to clipboardExpand all lines: exercises/Exercise_solutions.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,11 @@
1
-
# re introduction
1
+
# Exercise solutions
2
2
3
3
> Try to solve exercises in every chapter using only the features discussed until that chapter. Some of the exercises will be easier to solve with techniques presented in later chapters, but the aim of these exercises is to explore the features presented so far.
4
4
5
+
<br>
6
+
7
+
# re introduction
8
+
5
9
**a)** Check whether the given strings contain `0xB0`. Display a boolean result as shown below.
Copy file name to clipboardExpand all lines: exercises/Exercises.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,13 @@
1
-
# re introduction
1
+
# Exercises
2
2
3
3
> Try to solve exercises in every chapter using only the features discussed until that chapter. Some of the exercises will be easier to solve with techniques presented in later chapters, but the aim of these exercises is to explore the features presented so far.
4
4
5
5
> For solutions, see [Exercise_solutions.md](https://github.com/learnbyexample/py_regular_expressions/blob/master/exercises/Exercise_solutions.md).
6
6
7
+
<br>
8
+
9
+
# re introduction
10
+
7
11
**a)** Check whether the given strings contain `0xB0`. Display a boolean result as shown below.
0 commit comments