String

How to Convert String to Sentence Case using PHP

Submitted by alpha_luna on
In this tutorial, we are going to learn how to Convert String to Sentence Case using PHP. We all know, in a sentence form, the first letter is capitalized and the following word is lowercased but with the proper nouns and other words must be generally in capitalized word. We are going to convert the string to sentence case. For example, the user comment to a webpage, it will display the string into the web page but you cannot, sure enough, the text from the user is properly formatted or not.

Count SubString in a Large String in Java

Submitted by donbermoy on
This tutorial will teach you how to create a program that will have an example of Caret Event and Listener in Java. A CaretEvent lets the user notify interested parties that the text caret has changed in the event with its source. Note: A caret is the cursor indicating the insertion point So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of countSubStrings.java. 2.

Try and Catch Statements

Submitted by GeePee on
Introduction: This page will teach you about the Try and Catch statements in Java. What is a Try and Catch statement? A Try and Catch statement is a very handy statement which allows the program to handle errors and warnings thrown by the scripts. Each Try and Catch statement contains the block of script to handle, a single or multiple exception(s) followed by block(s) of script which are executed if that specific exception is thrown by the handled script.