Assume we have a list like this one:
List1:="Arrow1":"ABC":"Arrow2":"Arrow34":"ABCDEFG"
and we need to retrieve all the values from List1 beginning with "Arrow."
Namely:"Arrow1":"Arrow2":"Arrow34"
Then
List1:="Arrow1":"ABC":"Arrow2":"
Arrow34":"ABCDEFG";
K:=@Replace(@Left(List1;5);"Arrow";"");
A:=@Trim(K+"*~*"+List1);
B:=@Replace(A;"*~*"+List1;"");
M:=@Right(@trim(B);"*~*");
@Trim(@Replace(List1;M;""));
Do you have comments on this tip? Let us know.
This tip was submitted to the SearchDomino.com tip library by member Bobby Varghese. Please let others know how useful it is via the rating scale below. Do you have a useful Lotus Notes, Domino, Workplace or WebSphere tip or code snippet to share? Submit it to our monthly tip contest and you could win a prize.