Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,237 questions

56,140 answers

573 users

How to check if a string starts with a substring from a list of substrings in Java

1 Answer

0 votes
import java.util.List;

public class StartsWithAnyExample {
    // Function to check if the string starts with any substring from the list
    public static boolean startsWithAny(String string, List<String> substrings) {
        for (String substring : substrings) {
            // Use the startsWith method to check if the string starts with the substring
            if (string.startsWith(substring)) {
                return true;
            }
        }
        return false; // Return false if no substring matches
    }

    public static void main(String[] args) {
        String string = "abcdefg";

        // List of substrings
        List<String> substrings = List.of("xy", "poq", "mnop", "abc", "rsuvw");

        // Check if the string starts with any substring from the list
        if (startsWithAny(string, substrings)) {
            System.out.println("The string starts with a substring from the list.");
        } else {
            System.out.println("The string does not start with any substring from the list.");
        }
    }
}



/*
run:

The string starts with a substring from the list.

*/

 



answered Apr 4, 2025 by avibootz
...