com.spotinst.sdkjava.client.rest.UrlEncoder Maven / Gradle / Ivy
package com.spotinst.sdkjava.client.rest;
/**
* Created by ohadmuchnik on 31/05/2016.
*/
public class UrlEncoder {
public static String encode(String url) {
return url.replaceAll(" ", "%20");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy