-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.44 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html>
<head>
<meta charset="utf-8">
<meta name="application-name" content="KITAB regex tutorial">
<meta name="created" content="2021-05-05">
<title>KITAB regex tutorial - introduction</title>
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/xregexp/3.2.0/xregexp-all.min.js"></script>
</head>
<body>
<h1>Regex tutorial for humanists</h1>
<div id="tutorial">
<h2>Introduction</h2>
<p>
Regular expressions are a very powerful tool to extract information from
text. Basically, regular expressions are a way to formulate complicated search
queries ("patterns") in such a way that a computer can understand them.
There exist many good sources for learning regular expressions, but most
of them (including <a href="https://regexone.com/" target="_blank">regexone.com</a>, by
which this tutorial is inspired) are geared towards programmers, and their
examples are not directly relevant to humanists, which can make it difficult
to see the usefulness of regular expressions for humanists. This tutorial is
specifically aimed at students and researchers in the humanities.
</p>
<div id="input">
<input id="next_button" type="button" onclick="location.href='lesson1.html';" value="Continue" title="Go to the first lesson"/>
</div>
</div>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>