vote up 0 vote down star

I can't find this anywhere in the Domino Designer help. It seems so straightforward!

All I need to do is find the position of a character in a string.

flag

64% accept rate

3 Answers

vote up 0 vote down check

Unfortunately there is no such function in Lotus Formula. What are you trying to do? There may be another way to do it.

If you really need the character position though you could do this:

REM {
    S  Source string
    F  Character to find
    R  Location of character in string or 0
};

S := "My string";
F := "t";
LEN_S := @Length(S);
R := 0;

@For(I := 1; I < LEN_S; I := I + 1;
    @If(@Middle(S; I; 1) = F;
        @Do(R := I; I := LEN_S);
        @Nothing
    )
);
link|flag
vote up 0 vote down

@Length(src) - @Length(@ReplaceSubstring(src;srch;""))

link|flag
vote up 0 vote down

searchResult:=@Left(SearchString;"C"); indexOf:=@If(searchResult="";0;@Length(searchResult)); indexOf

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.