-
The Substring Method in Java
The Java String class provides a variety of methods for accessing information about String content. The substring method returns a section of...
-
How to Make the First Letter in a String a Capital in Java
String-handling in Java provides a number of standard functions. When you are using and manipulating text strings within a Java program, you...
-
How to Find a Java Thread at Runtime
The art of finding threads at runtime involves two Java classes, Thread and ThreadGroup. In addition, you must remember to name your...
-
How to Use Java Web Start
Java Web Start is an application "helper" deployed by Sun Microsystems with the Java Runtime environment. It is designed to help application...
-
What Is Casting in Java?
In Java, casting refers to the act of treating an object or method of a certain class like an object of a...
-
How to Create an Immutable Object in Java
An immutable object in programming, once you've created and initialized it, can never change its state. This may seem counterproductive since the...
-
How to Create a Hangman Game With Java
Everyone remembers playing the word-guessing game Hangman as a child. One player secretly chooses a word. The other player has to guess...
-
How to Find a Character in a String in Visual Basic
Finding a character in a string can seem like a pretty daunting task if you don't know the right tools to use....
-
How to Parse an Input String to Count Letters in Java
The string data type in Java is like an array of characters, and you can use the "length" method to determine the...
-
How to Check if a String Only Contains Alphabet Letters in Java
The most straight-forward way to check a Java string to see if it matches a set requirement for valid characters, such as...
-
How to Search & Parse Text Files in C#
Searching for files and parsing each file found using C# is a common programming practice that can save you time next time...
-
How to Manipulate Strings in MFC
The STL Library of pure C++ has the "string" class. The Microsoft Foundation Class (MFC) Library has its own salvation: the CString...
-
How to Update a String Array in Java Dynamic
The Java programming language features many classes, which are digital plans or blueprints for creating virtual objects. One type of class is...
-
How to Find a Character in a String in VBA
Finding a single character in a string using VBA is a special instance of finding one string within another. The process itself...
-
How to Split String Length in Java
Java provides you with a "split" function that splits a character string into two separate strings. The split function has a delimiter...
-
How to Compare Strings in Ruby
Ruby is an extremely powerful programming/scripting language. With powerful capabilities and an efficient syntax, many things are possible with Ruby. This article...
-
How to Access a String's Length in Java Programming
In many other programming languages, a string is a simple data type, but in Java it is a full-fledged object. Luckily, that...
-
How to Replace a String in PL/SQL
The Oracle PL/SQL software development program includes a set of functions that allows users to build text processing SQL queries. String processing...
-
How to Replace Regex on Python
The Python programming language uses regular expressions for pattern matching. Programmers often use regular expressions to search text for patterns of letters...
-
How to Split a String in JavaScript
The JavaScript language is rich in functions for manipulating text strings. It has four methods that allow you to extract portions of...