-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlecture11.html
31 lines (30 loc) · 1.32 KB
/
lecture11.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lecture 11 | Five Important String operations for beginners |</title>
</head>
<body>
*****************************Tutorial Start 🔥 ********************************
<h1>Five Important String operations for beginners | </h1>
<!--FIRST QUESTION-->
<h3>How to check equality of two string</h3>
<!--1.CODE SNIPPET HERE -->
<!--SECOND QUESTION-->
<h3>Comparing two string</h3>
<!--2.CODE SNIPPET HERE -->
<h3>Replace certain word with another</h3>
<p>Click here to learn more about ascii value<a
href="https://theasciicode.com.ar/ascii-printable-characters/lowercase-letter-m-minuscule-ascii-code-109.html">https://theasciicode.com.ar/ascii-printable-characters/lowercase-letter-m-minuscule-ascii-code-109.html</a></p>
<!--3.CODE SNIPPET HERE -->
<h3>accessing characters -string[0]</h3>
<!--4.CODE SNIPPET HERE -->
<h3>converting string to array using split function</h3>
<!--5.CODE SNIPPET HERE -->
***************************** Tutorial End 🚀 ********************************
<!--External javascript-->
<script src="lecture11.js"></script>
</body>
</html>