Difference between revisions of "LlLinksetDataFindKeys"

From Second Life Wiki
Jump to navigation Jump to search
m
m
Line 2: Line 2:
|func_sleep=0.0|func_energy=10.0
|func_sleep=0.0|func_energy=10.0
|func=llLinksetDataFindKeys
|func=llLinksetDataFindKeys
|p1_type=string|p1_name=search|p1_desc=A regular expression describing which keys to return.
|p1_type=string|p1_name=pattern|p1_desc=A regular expression describing which keys to return.
|p2_type=integer|p2_name=start|p2_desc=The first key to return.
|p2_type=integer|p2_name=start|p2_desc=The first key to return.
|p3_type=integer|p3_name=count|p3_desc=The number of keys to return.
|p3_type=integer|p3_name=count|p3_desc=The number of keys to return.
Line 9: Line 9:
|func_footnote
|func_footnote
|func_desc=
|func_desc=
The {{LSLP|llLinksetDataListKeys}} function returns a list of up to {{LSLP|count}} keys from the datastore that match {{LSLP|search}}, starting at the one indicated by {{LSLP|start}}. If {{LSLP|count}} is less than 1, then all keys between {{LSLP|start}} and the end which match the search expression are returned.  
The '''llLinksetDataListKeys''' function returns a list of up to {{LSLP|count}} keys from the datastore that match {{LSLP|pattern}}, starting at the one indicated by {{LSLP|start}}. If {{LSLP|count}} is less than 1, then all keys between {{LSLP|start}} and the end which match {{LSLP|pattern}} are returned.  
|func_footnote
|func_footnote
|spec=
|spec=
{{LSLP|search}} is a [https://en.wikipedia.org/wiki/Regular_expression Regular expression]
{{LSLP|pattern}} is a [https://en.wikipedia.org/wiki/Regular_expression Regular expression]
|caveats
|caveats
|helpers
|helpers

Revision as of 16:12, 13 October 2022

Summary

Function: list llLinksetDataFindKeys( string pattern, integer start, integer count );

The llLinksetDataListKeys function returns a list of up to count keys from the datastore that match pattern, starting at the one indicated by start. If count is less than 1, then all keys between start and the end which match pattern are returned.
Returns a list of the keys in the datastore.

• string pattern A regular expression describing which keys to return.
• integer start The first key to return.
• integer count The number of keys to return.

Specification

pattern is a Regular expression

Examples

Deep Notes

Search JIRA for related Issues

Signature

function list llLinksetDataFindKeys( string pattern, integer start, integer count );