karthikeya Boyini

karthikeya Boyini

1,421 Articles Published

Articles by karthikeya Boyini

Page 69 of 143

Get the substring after the first occurrence of a separator in Java

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 9K+ Views

We have the following string with a separator.String str = "Tom-Hanks";We want the substring after the first occurrence of the separator i.e.HanksFor that, first you need to get the index of the separator and then using the substring() method get, the substring after the separator.String separator ="-"; int sepPos = str.indexOf(separator); System.out.println("Substring after separator = "+str.substring(sepPos + separator.length()));The following is an example.Examplepublic class Demo {    public static void main(String[] args) {       String str = "Tom-Hanks";       String separator ="-";       int sepPos = str.indexOf(separator);       if (sepPos == -1) { ...

Read More

Get the substring before the last occurrence of a separator in Java

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 6K+ Views

We have the following string with a separator.String str = "David-Warner";We want the substring before the last occurrence of a separator. Use the lastIndexOf() method.For that, you need to get the index of the separator using indexOf()String separator ="-"; int sepPos = str.lastIndexOf(separator); System.out.println("Substring before last separator = "+str.substring(0, sepPos));The following is an example.Examplepublic class Demo {    public static void main(String[] args) {       String str = "David-Warner";       String separator ="-";       int sepPos = str.lastIndexOf(separator);       if (sepPos == -1) {          System.out.println("");       ...

Read More

Convert Long to numeric primitive data types in Java

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 760 Views

Let’s say we have Long object here.Long myObj = new Long("9879");Now, if we want to convert this Long to short primitive data type. For that, use the in-built shortValue() method −// converting to short primitive types short shortObj = myObj.shortValue(); System.out.println(shortObj);In the same way convert Long to another numeric primitive data type int. For that, use the in-built intValue() method −// converting to int primitive types int intObj = myObj.intValue(); System.out.println(intObj);The following is an example wherein we convert Long to numeric primitive types short, int, float, etc −Examplepublic class Demo { public static void main(String[] args) { ...

Read More

Java Program to check for Integer overflow

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 7K+ Views

To check for Integer overflow, we need to check the Integer.MAX_VALUE, which is the maximum value of an integer in Java.Let us see an example wherein integers are added and if the sum is more than the Integer.MAX_VALUE, then an exception is thrown.Examplepublic class Demo {    public static void main(String[] args) {       int val1 = 9898989;       int val2 = 6789054;       System.out.println("Value1: "+val1);       System.out.println("Value2: "+val2);       long sum = (long)val1 + (long)val2;       if (sum > Integer.MAX_VALUE) {          throw new ...

Read More

Dunder or magic methods in python

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 778 Views

magic methods that allow us to do some pretty neat tricks in object oriented programming. These methods are identified by a two underscores (__) used as prefix and suffix. As example, function as interceptors that are automatically called when certain conditions are met. In python __repr__ is a built-in function used to compute the "official" string representation of an object, while __str__ is a built-in function that computes the "informal" string representations of an object. Example Code class String: # magic method to initiate object def __init__(self, string): ...

Read More

Display the maximum of three integer values in Java

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 258 Views

The following is an example displaying the maximum of three integer values.Examplepublic class Demo {    public static void main(String[] args) {       int val1 = 10;       int val2 = 20;       int val3 = 30;       System.out.println("Number 1 = "+val1);       System.out.println("Number 2 = "+val2);       System.out.println("Number 3 = "+val3);       if (val2 > val1) {          val1 = val2;       }       if (val3 > val1) {          val1 = val3;     ...

Read More

Truncate BigDecimal value in Java

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 2K+ Views

The truncate BigDecimal value in Java, try the following code.Here, we have taken two BigDecimla values and set the round mode for truncating the decimal values −Exampleimport java.math.BigDecimal; public class Demo { public static void main(String[] argv) throws Exception { int decPlaces1 = 3; int decPlaces2 = 5; BigDecimal val1 = new BigDecimal("37578975587.876876989"); BigDecimal val2 = new BigDecimal("62567875598.976876569"); System.out.println("Value 1 : "+val1); ...

Read More

Convert double primitive type to a Double object in Java

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 8K+ Views

To convert double primitive type to a Double object, you need to use Double constructor.Let’s say the following is our double primitive.// double primitive double val = 23.78;To convert it to a Double object, use Double constructor.// Double object Double ob = new Double(val);Examplepublic class Demo {    public static void main(String args[]) {       // double primitive       double val = 23.78;       // Double object       Double ob = new Double(val);       System.out.println(ob);    } }Output23.78

Read More

Java program to get the minimum of three long values

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 132 Views

Firstly, let us declare and initialize three long values.long val1 = 88799; long val2 = 98567; long val3 = 98768;Now, find the minimum of three long values using the following condition −// checking for maximum if (val2 < val1) { val1 = val2; } if (val3 < val1) { val1 = val3; }The following is the complete example to get the minimum value −Examplepublic class Demo { public static void main(String[] args) { long val1 = 88799; long val2 ...

Read More

Java Program to convert an UNSIGNED byte to a JAVA type

karthikeya Boyini
karthikeya Boyini
Updated on 11-Mar-2026 340 Views

Firstly, let us declare byte values.byte val1 = 127; byte val2 = -128;To convert the above given unsigned byte, you can use the following. Here, we are first implementing it for the variable “val1”.(int) val1 & 0xFFNow for the second variable “val2”.(int) val2 & 0xFFLet us see the complete example to convert an UNSIGNED bye to a JAVA type.Exampleimport java.util.*; public class Demo {    public static void main(String[] args) {       byte val1 = 127;       byte val2 = -128;       System.out.println(val1);       System.out.println((int) val1 & 0xFF);       System.out.println(val2);       System.out.println((int) val2 & 0xFF);    } }Output127 127 -128 128

Read More
Showing 681–690 of 1,421 articles
« Prev 1 67 68 69 70 71 143 Next »
Advertisements