All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencds.cqf.utilities.IGUtils Maven / Gradle / Ivy

package org.opencds.cqf.utilities;

public class IGUtils {
    public static String getImplementationGuideCanonicalBase(String url) {
        String canonicalBase = null;

        if (url != null && !url.isEmpty()) {
            canonicalBase = url.substring(0, url.indexOf("/ImplementationGuide/"));
        }

        return canonicalBase;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy