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,181 questions

56,073 answers

573 users

How to use pattern matches to match regex with dots in a string using Java

1 Answer

0 votes
import java.util.regex.*;  

public class Test {  
    public static void main(String args[]) {  
        System.out.println("1 " + Pattern.matches(".s", "as"));
        System.out.println("2 " + Pattern.matches(".s", "to")); 
        System.out.println("3 " + Pattern.matches(".s", "asp"));
        System.out.println("4 " + Pattern.matches(".s", "dis")); 
        System.out.println("5 " + Pattern.matches("..s", "yes")); 
        System.out.println("6 " + Pattern.matches("...s", "affs")); 
    }  
}      



/*
run:

1 true
2 false
3 false
4 false
5 true
6 true
	
*/

 



answered Oct 5, 2019 by avibootz
...