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

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

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

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,872 questions

51,796 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
...