| ZIPList Method |
[This is preliminary documentation and is subject to change.]
List of strings consisting of all names match the regular expression provided in regexp.
If no expression is provided, all names in the current open ZIP are returned.
See https://regex.sorokin.engineer/en/latest/regular_expressions.html for information on
the expression syntax and options.
(API Extension)
Namespace:
dss_sharp
Assembly:
dss_sharp (in dss_sharp.dll) Version: 1.0.0
Syntax public string[] List(
string regexp = ""
)
Public Function List (
Optional regexp As String = ""
) As String()
public:
array<String^>^ List(
String^ regexp = L""
)
member List :
?regexp : string
(* Defaults:
let _regexp = defaultArg regexp ""
*)
-> string[]
Parameters
- regexp (Optional)
- Type: SystemString
[Missing <param name="regexp"/> documentation for "M:dss_sharp.ZIP.List(System.String)"]
Return Value
Type:
String[Missing <returns> documentation for "M:dss_sharp.ZIP.List(System.String)"]
See Also