Often we need to get a substring between two other substrings. The logic is simple, but a reusable method is helpful.
These methods locate the position of strings within a source string
. With additional logic, we can take substrings relative to indexes.
As we begin, it is important to understand the input and output of the Java program. We have a text line that seems to define a variable between 2 parts.
Input = "DEFINE:A=TWO" Between("DEFINE:", "=TWO") = "A"
This program introduces the between, before and after methods. For the three methods, the first argument is the String
we are operating upon.
string
.Before()
is a simple method that returns the part of the string
that occurs before the first index of the substring.After()
does the opposite of the before()
method—it is also simple and requires minimal logic.public class Program { static String between(String value, String a, String b) { // Return a substring between the two strings. int posA = value.indexOf(a); if (posA == -1) { return ""; } int posB = value.lastIndexOf(b); if (posB == -1) { return ""; } int adjustedPosA = posA + a.length(); if (adjustedPosA >= posB) { return ""; } return value.substring(adjustedPosA, posB); } static String before(String value, String a) { // Return substring containing all characters before a string. int posA = value.indexOf(a); if (posA == -1) { return ""; } return value.substring(0, posA); } static String after(String value, String a) { // Returns a substring containing all characters after a string. int posA = value.lastIndexOf(a); if (posA == -1) { return ""; } int adjustedPosA = posA + a.length(); if (adjustedPosA >= value.length()) { return ""; } return value.substring(adjustedPosA); } public static void main(String[] args) { // Test this string. final String test = "DEFINE:A=TWO"; // Call between, before and after methods. System.out.println(between(test, "DEFINE:", "=")); System.out.println(between(test, ":", "=")); System.out.println(before(test, ":")); System.out.println(before(test, "=")); System.out.println(after(test, ":")); System.out.println(after(test, "DEFINE:")); System.out.println(after(test, "=")); } }A A DEFINE DEFINE:A A=TWO A=TWO TWO
With programs, domain-specific languages are often used for configuration files. With these methods, we can easily parse a DSL and extract parts from statements.
main()
method above, the string
"DEFINE" could be used to set the variable A to the value TWO.In most tasks, performance is not the primary concern. For a configuration file language, one that is rarely run, correctness is more important.
String
methods help with writing correct code. The special value -1 is handled, avoiding possible exceptions.These methods have a different behavior in a failure case. They will return an empty String
, which may reduce exceptions but could cause incorrect behavior if not expected.