-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 3.81 KB
/
index.html
File metadata and controls
38 lines (38 loc) · 3.81 KB
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
33
34
35
36
37
38
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<HTML><HEAD><TITLE>Windows Vs Unix Text encoding</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<SCRIPT TYPE="text/javascript"><!--
function regexbuddyhighlight(regexoffset) {
document.getElementById("regex" + regexoffset).style.background = "#FFFF00";
document.getElementById("tree" + regexoffset).style.background = "#FFFF00";
}
function regexbuddyclear(regexoffset) {
document.getElementById("regex" + regexoffset).style.background = "white";
document.getElementById("tree" + regexoffset).style.background = "white";
}
--></SCRIPT>
<style type="text/css"><!--
body { margin: 0; padding: 0; background-color: white; color: black; }
#regexbuddyregex { margin: 0; padding: 10pt; }
#regexbuddytree { margin: 0; padding: 0; overflow-y: scroll; }
#regexbuddyfooter { margin: 0; padding: 10pt; }
h1 { margin: 0; padding-bottom: 10pt;}
ul { margin-top: 0; }
--></style>
</HEAD>
<BODY>
<DIV id="regexbuddyregex"><H1>Windows Vs Unix Text encoding</H1><TT CLASS=regexbuddy><SPAN ID="regexA0" STYLE="background: white" onMouseOver="regexbuddyhighlight('A0')" onMouseOut="regexbuddyclear('A0')">do this</SPAN><SPAN ID="regexA14" STYLE="background: white" onMouseOver="regexbuddyhighlight('A14')" onMouseOut="regexbuddyclear('A14')">\r</SPAN><SPAN ID="regexA18" STYLE="background: white" onMouseOver="regexbuddyhighlight('A18')" onMouseOut="regexbuddyclear('A18')">\n</SPAN><SPAN ID="regexA22" STYLE="background: white" onMouseOver="regexbuddyhighlight('A22')" onMouseOut="regexbuddyclear('A22')">\t</SPAN><SPAN ID="regexA26" STYLE="background: white" onMouseOver="regexbuddyhighlight('A26')" onMouseOut="regexbuddyclear('A26')">dont do this</SPAN></TT><P>Options: Case insensitive; Exact spacing; Dot doesn’t match line breaks; ^$ don’t match at line breaks; Numbered capture</P></DIV><DIV id="regexbuddytree"><UL CLASS="regexbuddy"><LI CLASS="regexstring"><A HREF="https://www.regular-expressions.info/characters.html"><SPAN ID="treeA0" onMouseOver="regexbuddyhighlight('A0')" onMouseOut="regexbuddyclear('A0')">Match the character string “do this” literally (case insensitive)</SPAN></A></LI><LI CLASS="regexspecial"><A HREF="https://www.regular-expressions.info/nonprint.html"><SPAN ID="treeA14" onMouseOver="regexbuddyhighlight('A14')" onMouseOut="regexbuddyclear('A14')">Match the carriage return character</SPAN></A></LI><LI CLASS="regexspecial"><A HREF="https://www.regular-expressions.info/nonprint.html"><SPAN ID="treeA18" onMouseOver="regexbuddyhighlight('A18')" onMouseOut="regexbuddyclear('A18')">Match the line feed character</SPAN></A></LI><LI CLASS="regexspecial"><A HREF="https://www.regular-expressions.info/nonprint.html"><SPAN ID="treeA22" onMouseOver="regexbuddyhighlight('A22')" onMouseOut="regexbuddyclear('A22')">Match the tab character</SPAN></A></LI><LI CLASS="regexstring"><A HREF="https://www.regular-expressions.info/characters.html"><SPAN ID="treeA26" onMouseOver="regexbuddyhighlight('A26')" onMouseOut="regexbuddyclear('A26')">Match the character string “dont do this” literally (case insensitive)</SPAN></A></LI></UL></DIV><DIV id="regexbuddyfooter"><P>Created with <A HREF="https://www.regexbuddy.com/">RegexBuddy</A></P></DIV>
<script type="text/javascript">
function resizetree() {
var winH;
if(!window.innerWidth) {
if(!(document.documentElement.clientWidth == 0)) { winH = document.documentElement.clientHeight; }
else { winH = document.body.clientHeight; }
} else { winH = window.innerHeight; }
if (winH) {
document.getElementById("regexbuddytree").style.height = (winH - document.getElementById("regexbuddyregex").offsetHeight - document.getElementById("regexbuddyfooter").offsetHeight) + "px";
}
}
window.onresize = resizetree; resizetree();
</script>
</BODY></HTML>