J'encadre une expression régulière pour vérifier si un mot commence par http://
Ou https://
Ou ftp://
, Mon code est comme suit,
public static void main(String[] args) {
try{
String test = "http://yahoo.com";
System.out.println(test.matches("^(http|https|ftp)://"));
} finally{
}
}
Il imprime false
. J'ai également vérifié stackoverflow post Regex pour tester si la chaîne commence par http: // ou https: //
La regex semble avoir raison, mais pourquoi ne correspond-elle pas ?. J'ai même essayé ^(http|https|ftp)\://
et ^(http|https|ftp)\\://
Vous avez besoin d'une correspondance entrée entière ici.
System.out.println(test.matches("^(http|https|ftp)://.*$"));
Edit :( Basé sur le commentaire de @ davidchambers )
System.out.println(test.matches("^(https?|ftp)://.*$"));
À moins qu'il y ait une raison impérieuse d'utiliser une expression régulière, je voudrais simplement utiliser String.startsWith:
bool matches = test.startsWith("http://")
|| test.startsWith("https://")
|| test.startsWith("ftp://");
Je ne serais pas surpris si cela est plus rapide, aussi.
Si vous voulez le faire en respectant la casse, c'est mieux:
System.out.println(test.matches("^(?i)(https?|ftp)://.*$"));
Je pense que les solutions d'analyse de regex/string sont excellentes, mais dans ce contexte particulier, il semble logique d'utiliser simplement l'analyseur d'URL de Java:
https://docs.Oracle.com/javase/tutorial/networking/urls/urlInfo.html
Tiré de cette page:
import Java.net.*;
import Java.io.*;
public class ParseURL {
public static void main(String[] args) throws Exception {
URL aURL = new URL("http://example.com:80/docs/books/tutorial"
+ "/index.html?name=networking#DOWNLOADING");
System.out.println("protocol = " + aURL.getProtocol());
System.out.println("authority = " + aURL.getAuthority());
System.out.println("Host = " + aURL.getHost());
System.out.println("port = " + aURL.getPort());
System.out.println("path = " + aURL.getPath());
System.out.println("query = " + aURL.getQuery());
System.out.println("filename = " + aURL.getFile());
System.out.println("ref = " + aURL.getRef());
}
}
donne ce qui suit:
protocol = http
authority = example.com:80
Host = example.com
port = 80
path = /docs/books/tutorial/index.html
query = name=networking
filename = /docs/books/tutorial/index.html?name=networking
ref = DOWNLOADING
la méthode test.matches () vérifie tous les text.use test.find ()