Path$

Takes one parameter, Index

Description:

Returns the path component, each separated by /, specified by the Index parameter.

Example:

[New] FirstItem = Path$ 1
[New] SecondItem = Path$ 2
'/About/Test/Three>/<Four?One=Abc&Two=D<F>

[Pull]      Req.Path Req.PathWithParams One Two

HtmlAlert   Req.Path
HtmlAlert   (Req.PathWithParams & "
One = " & One & "
Two = " & Two) HtmlAlert   ((Path$ 1) & "
" & (Path$ 2) & "
" & (Path$ 3) & "
" & (Path$ 4)) NewFields   "Index Path" NewRecords  3 Value       "Index", "Index" Text        "Path", "Path", "Index" HtmlTable