parseOrgIdUrl function

String parseOrgIdUrl(
  1. String url
)

Return the ID of the section pointed to by the URL. The URL must be one for which isOrgCustomIdUrl returns true.

Implementation

String parseOrgIdUrl(String url) {
  assert(isOrgIdUrl(url));
  return url.substring(3);
}