AmitDiwan has Published 11365 Articles

HTML DOM Table tBodies Collection

AmitDiwan

AmitDiwan

Updated on 20-Sep-2019 09:02:27

89 Views

The HTML DOM table tBodies Collection returns a collection of all elements in a table in an HTML document.SyntaxFollowing is the syntax −object.tBodiesProperties of tBodies CollectionPropertyExplanationlengthIt returns the number of elements in the collection in an HTML documentProperties of tBodies CollectionMethodExplanation[index]It returns the specified index element from ... Read More

HTML DOM Table rows Collection

AmitDiwan

AmitDiwan

Updated on 20-Sep-2019 08:55:43

275 Views

The HTML DOM table rows Collection returns a collection of all elements of a table in an HTML document.SyntaxFollowing is the syntax −object.rowsProperties of rows Collectionelements in the collection in an HTML document.PropertyExplanationlengthIt returns the number of elements in the collection in an HTML document.Methods of rows Collectionelement ... Read More

HTML DOM Table deleteRow() Method

AmitDiwan

AmitDiwan

Updated on 20-Sep-2019 08:44:25

80 Views

The HTML DOM table deleteRow() method deletes a element from the table in an HTML document.SyntaxFollowing is the syntax −object.deleteRow(index)Here, index represent a number that specifies the position of the row to delete.Let us see an example of HTML DOM table deleteRow() method −Example Live Demo    body ... Read More

HTML DOM Table deleteTHead() Method

AmitDiwan

AmitDiwan

Updated on 20-Sep-2019 08:40:50

52 Views

The HTML DOM table deleteTHead() method delete the element from the table in an HTML document.SyntaxFollowing is the syntax −object.deleteTHead()Let us see an example of HTML DOM table deleteTHead() method −Example Live Demo    body {       color: #000;       background: lightblue;     ... Read More

Check if a string contains only alphabets in Java using ASCII values

AmitDiwan

AmitDiwan

Updated on 20-Sep-2019 08:29:26

388 Views

Let’s say we have set out inut string in myStr variable. Now loop through until the length of string and check for alphabets with ASCII values −for (int i = 0; i < myStr.length(); i++) {    char c = myStr.charAt(i);    if (!(c >= 'A' && c = 'a' && c = 'A' && c = 'a' && c

Check if a string contains only alphabets in Java using Regex

AmitDiwan

AmitDiwan

Updated on 20-Sep-2019 08:24:32

836 Views

At first, convert the string into character array. Here, name is our string −char[] ch = name.toCharArray();Now, loop through and find whether the string contains only alphabets or not. Here, we are checking for not equal to a letter for every character in the string −for (char c : ch) { ... Read More

Check if a string contains only alphabets in Java using Lambda expression

AmitDiwan

AmitDiwan

Updated on 20-Sep-2019 08:19:04

595 Views

Let’s say our string is −String str = "Amit123";Now, using allMatch() method, get the boolean result whether the string has only alphabets or now −boolean result = str.chars().allMatch(Character::isLetter);Following is an example to check if a string contains only alphabets using Lambda Expressions −Exampleclass Main {    public static void main(String[] ... Read More

Insert a String into another String in Java

AmitDiwan

AmitDiwan

Updated on 20-Sep-2019 08:16:38

2K+ Views

Let’s say we have a string “That’s good!” and within that we need to insert the text “no”. Therefore, the resultant string should be “That’s no good!” −String str = "That's good!"; String newSub = "no ";Now, the index where the new sub string will get inserted −int index = ... Read More

Initialize HashMap in Java

AmitDiwan

AmitDiwan

Updated on 20-Sep-2019 07:57:58

536 Views

The HashMap class uses a hashtable to implement the Map interface. This allows the execution time of basic operations, such as get( ) and put( ), to remain constant even for large sets.Following is the list of constructors supported by the HashMap class.Sr.NoConstructor & Description1HashMap( )This constructor constructs a default ... Read More

Initialize an ArrayList in Java

AmitDiwan

AmitDiwan

Updated on 20-Sep-2019 07:54:49

891 Views

The ArrayList class extends AbstractList and implements the List interface. ArrayList supports dynamic arrays that can grow as needed. Array lists are created with an initial size. When this size is exceeded, the collection is automatically enlarged. When objects are removed, the array may be shrunk.Let us now see how ... Read More

Advertisements