<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>JavaScript | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Sat, 10 Dec 2022 05:10:14 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>How to convert a sentence to a Title case in JavaScript</title>
		<link>https://studentprojects.in/software-development/javascript/javascript-tricks/how-to-convert-a-sentence-to-a-title-case-in-javascript/</link>
					<comments>https://studentprojects.in/software-development/javascript/javascript-tricks/how-to-convert-a-sentence-to-a-title-case-in-javascript/#respond</comments>
		
		<dc:creator><![CDATA[Editorial Team]]></dc:creator>
		<pubDate>Thu, 10 Mar 2022 18:34:42 +0000</pubDate>
				<category><![CDATA[JavaScript Tricks]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Title case]]></category>
		<category><![CDATA[Regular expression]]></category>
		<category><![CDATA[RegEx]]></category>
		<guid isPermaLink="false">https://studentprojects.in/?p=8622</guid>

					<description><![CDATA[<p>Title case is any text, such as in a title or heading, where the first letter of words is capitalized. So we can achieve this by changing the first element of every word in a sentence to uppercase while leaving the other elements in lowercase. Output</p>
<p>The post <a href="https://studentprojects.in/software-development/javascript/javascript-tricks/how-to-convert-a-sentence-to-a-title-case-in-javascript/">How to convert a sentence to a Title case in JavaScript</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Title case is any text, such as in a title or heading, where the first letter of words is capitalized. So we can achieve this by changing the first element of every word in a sentence to uppercase while leaving the other elements in lowercase.</p>



<pre class="wp-block-code"><code lang="javascript" class="language-javascript">function toTitleCase(string) {
  if (string === null || string === '') {
    return '';
  }
  return string.replace(/\w\S*/g, function (txt) {
    return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
  });
}

const output = toTitleCase("javascript is very easy to learn");
console.log(output);</code></pre>



<p>Output</p>



<pre class="wp-block-code"><code class="">Javascript Is Very Easy To Learn</code></pre>



<p></p><p>The post <a href="https://studentprojects.in/software-development/javascript/javascript-tricks/how-to-convert-a-sentence-to-a-title-case-in-javascript/">How to convert a sentence to a Title case in JavaScript</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/javascript/javascript-tricks/how-to-convert-a-sentence-to-a-title-case-in-javascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Doctor&#8217;s Diary using JSP Technology</title>
		<link>https://studentprojects.in/software-development/software-projects/software/doctors-diary-using-jsp-technology/</link>
					<comments>https://studentprojects.in/software-development/software-projects/software/doctors-diary-using-jsp-technology/#comments</comments>
		
		<dc:creator><![CDATA[Editorial Team]]></dc:creator>
		<pubDate>Thu, 20 Nov 2008 07:08:41 +0000</pubDate>
				<category><![CDATA[Software Engineering Projects]]></category>
		<category><![CDATA[Doctor's Diary]]></category>
		<category><![CDATA[JSP Technology]]></category>
		<category><![CDATA[J2EE(JSP)]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[JavaScript]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=209</guid>

					<description><![CDATA[<p>This is the model software from studentprojects.in. We successfully implemented the need and necessary concepts of a doctor, for his stand alone clinic. We hope this software package will definitely help the students, to get an idea about their academic projects. For a doctor, it is absolutely difficult to keep all the details of his</p>
<p>The post <a href="https://studentprojects.in/software-development/software-projects/software/doctors-diary-using-jsp-technology/">Doctor’s Diary using JSP Technology</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>This is the model software from studentprojects.in. We successfully implemented the need and necessary concepts of a doctor, for his stand alone clinic. We hope this software package will definitely help the students, to get an idea about their academic projects.</p>
<p>For a doctor, it is absolutely difficult to keep all the details of his patients in such a manner that is easily retrievable in hardware domain, i.e. by keeping a booklet or file folder. So, it is the time to switch for a doctor from classic hardware book-keeping to the software domain, by storing all the details in Computer memories, databases, which are easy accessible at any time, every time. Before that, it should be implemented as the Academic projects in educational institutions. By that way, we are trying to help the students, by making the things easier. The most emerging technology, J2EE(JSP), SQL, JavaScript are the backbone of this project. This is the outcome of software professionals, from the knowledge city- Bengalooru. A student can get these codes and can find how the real time practical needs are made in such a sophisticated form and such a short size. The GUI developed is user- friendly and minimum computer knowledge is sufficient to handle the software, we can expect that now from doctor’s side on these days.</p>
<p>You can find the inner feature of the Doctor’s Diary, with static images of the Dynamic pages.</p>
<p>This software has mainly 3 modules.</p>
<ol>
<li>Entering the New patient to the clinic.</li>
<li>Manipulating with Old patient details.</li>
<li>Setting the personal details of Doctor.</li>
</ol>
<p><figure id="attachment_210" aria-describedby="caption-attachment-210" style="width: 500px" class="wp-caption aligncenter"><img decoding="async" class="size-full wp-image-210" title="Figure 1: Main page of Doctor's Diary." src="https://studentprojects.in/wp-content/uploads/2008/11/mainpage.gif" alt="Figure 1: Main page of Doctor's Diary." width="500" height="371" /><figcaption id="caption-attachment-210" class="wp-caption-text">Figure 1: Main page of Doctor</figcaption></figure></p>
<p>Here are the brief descriptions of each field. In the left side of the home page we have an array of features of the software, in the black background.</p>
<p><strong>1. New Patient:</strong></p>
<p>The very first option in the features’ list is the New Patient. Clicking the option will lead to the corresponding page in the main page of the software which will input the new patient details to the database (Shown in figure 2). An auto incrementing number display named Patient Id, will be the unique identification number for the patient. The Doctor can enter the Patient Name, address and other details. He also can enter the Symptoms and the Medicine Prescribed for the patient. These details are getting stored in the database under today’s date.</p>
<p><figure id="attachment_211" aria-describedby="caption-attachment-211" style="width: 500px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="size-full wp-image-211" title="Figure 2: New patient page of Doctor's Diary." src="https://studentprojects.in/wp-content/uploads/2008/11/new_patient.gif" alt="Figure 2: New patient page of Doctor's Diary." width="500" height="641" /><figcaption id="caption-attachment-211" class="wp-caption-text">Figure 2: New patient page of Doctor</figcaption></figure></p><p>The post <a href="https://studentprojects.in/software-development/software-projects/software/doctors-diary-using-jsp-technology/">Doctor’s Diary using JSP Technology</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/software-projects/software/doctors-diary-using-jsp-technology/feed/</wfw:commentRss>
			<slash:comments>42</slash:comments>
		
		
			</item>
	</channel>
</rss>
