VOOZH about

URL: https://www.javacodegeeks.com/tag/string

⇱ String Archives - Java Code Geeks


  • Core Java👁 Image
    Omozegie AziegbeDecember 8th, 2025
    0 237

    String to Blob Conversion in Java

    Working with BLOB (Binary Large Object) data is common when storing large binary files (e.g., PDFs, images, documents) in relational…

    Read More »
  • Core Java👁 Image
    Yatin BatraNovember 11th, 2025
    0 439

    Optimizing String Splitting Performance in Java

    String manipulation is one of the most common operations in Java, and splitting strings based on delimiters is a frequent…

    Read More »
  • Core Java👁 Image
    Yatin BatraJune 10th, 2025
    0 362

    String Minus Operation In Java

    Java does not support a native minus (-) operator for strings like in some scripting languages. However, developers often want…

    Read More »
  • Core Java👁 Image
    Yatin BatraMarch 21st, 2025
    0 579

    Java String Slicing Example

    Python provides a powerful and concise way to slice Strings using simple syntax. However, Java does not have built-in String…

    Read More »
  • Core Java👁 Image
    Yatin BatraJuly 4th, 2024
    0 1,338

    Check if Two Strings Are Permutations of Each Other in Java

    In this article, we will explore different approaches to check if two strings are permutations of each other in Java.…

    Read More »
  • Core Java👁 Image
    Java Code GeeksApril 4th, 2023
    0 842

    Methods To Convert InputStream to String In Java

    In Java, an InputStream is a common way to read data from a source, such as a file or network…

    Read More »
  • Core Java👁 Image
    ProgramCreekSeptember 19th, 2013
    5 129

    Top 10 Questions of Java Strings

    The following are top 10 frequently asked questions about Java Strings. 1. How to compare strings? Use “==” or use…

    Read More »
  • Core Java👁 Image
    Tomasz NurkiewiczJuly 30th, 2012
    3 191

    String memory internals

    This article is based on my answer on StackOverflow. I am trying to explain how String class stores the texts,…

    Read More »
  • Core Java👁 Image
    Cagdas BasaranerMay 22nd, 2012
    0 228

    Generic Text Comparison Tool with LCS Approach

    Detecting and showing differences of two texts (especially having hundreds or thousands of lines) is a common problem. Using pure…

    Read More »
  • 1
  • 2
  • »
Back to top button
Close