家伙!我有一个URL,我想在其中编码每个字符,但斜杠“/”。我试过使用String.split()函数,但它不能像我希望的那样工作:
String url1 = "/images";
String url2 = "/images/";
url1.split("/"); // gives me {"", "images"}
url2.split("/"); // gives me the same array {"", "images"}, when I expect {"", "images", ""}
我怎样才能获得像“/ images /”这样的字符串{“”,“images”,“”}数组?也许我需要使用另一个正则表达式?