LlParseStringKeepNulls
首页 | 函数 | 事件 | 类型 | 操作符 | 常数 | Flow Control | Script Library | Categorized Library | Tutorials |
函数名 |
---|
Function: list llParseStringKeepNulls( string src, list separators, list spacers ); |
参数:
• string src – source string • list separators – separators to be discarded • list spacers – spacers to be kept |
返回值:
返回一个被 src 分解成列表的列表,丢弃分隔符,保留间隔符,保留所有生成的 null 值。 |
注意事项 |
---|
注意事项
|
示例 |
---|
示例一
default { state_entry() { // This will say: // <A><crazy><fox><.><Saw><the><moon><.><.> string my_string = "A crazy fox. Saw the moon.."; list my_list = llParseString2List(my_string,[" "],["."]); llOwnerSay("<" + llDumpList2String(my_list,"><") + ">"); // This will say: // <A><crazy><fox><.><><><Saw><the><moon><.><><.><> my_list = llParseStringKeepNulls(my_string,[" "],["."]); llOwnerSay("<" + llDumpList2String(my_list,"><") + ">"); } } |
相关函数 |
---|
llParseString2List |
相关事件 |
---|