rp_url_component_list

EveAndersson.com : API Browser : rp_url_component_list

rp_url_component_list

rp_url_component_list url
Defined in packages/acs-core/request-processor-procs.tcl

Returns a list of components in $url, with a trailing empty element (representing the magic "index file") if the component has a trailing slash. For example:

  • rp_url_component_list "/" yields [list ""]
  • rp_url_component_list "/foo/bar" yields [list "foo" "bar"]
  • rp_url_component_list "/foo/bar/" yields [list "foo" "bar" ""]

Parameters:
url
[ show source ]

Show another procedure:

eve@eveandersson.com