0
A
回答
0
不幸的是Lotus公式中沒有這樣的函數。你想做什麼? 有可能是另一種方式來做到這一點。
如果你真的需要的字符位置,雖然你可以這樣做:
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
)
);
1
信息搜索結果:= @左(SearchString在; 「C」); indexOf:= @ If(searchResult =「」; 0; @Length(searchResult)); 的indexOf
-1
@Length(SRC) - @Length(@ReplaceSubstring(SRC; SRCH; 「」))
+0
這樣做的結果將是字符串中與搜索匹配的字符數。它不會在字符串中提供字符的位置。 – molasses 2010-10-08 02:56:34
2
你可以使用@Left或@Leftback。我認爲在這種情況下他們的工作是一樣的。
src:= {your field value to search};
char:= {your target character};
indexof:= @Length(@Left(src;char))
相關問題
- 1. Lotus Notes公式語言
- 2. Lotus Notes - 如何讀出公式語言中的複選框值
- 3. * =式語言運營商在Lotus Notes
- 4. Lotus Notes日期計算中的列視圖公式的公式語言
- 5. 在Lotus Notes公式中排序
- 6. Notes公式語言日期差異
- 7. Lotus Notes Domino API - 從公式生成值
- 8. 如何在Lotus Notes Domino中執行回滾
- 9. 在Lotus公式語言中設置新的HTTPPassword
- 10. 重命名Lotus Notes文檔
- 11. Lotus Notes中VBA
- 12. Lotus Notes - 運行公式後自動刪除按鈕
- 13. Lotus Notes如何使用公式語言從另一個表單獲取計算值
- 14. 如何以bash語言執行命令並檢查其結果
- 15. 使用Lotus Notes中的公式在視圖中顯示唯一行
- 16. 如何獲得從Lotus Notes
- 17. 如何使用Lotus Notes
- 18. Lotus Notes嵌入式視圖
- 19. 使用Lotus Notes公式計算視圖中文檔的數量
- 20. Lotus Notes中的公式列表 - 嘗試更新每個元素
- 21. 得到兩列在使用Lotus觀點平均Notes公式
- 22. 在Lotus Notes中的附件?
- 23. Lotus Notes @formula語言:操作順序錯誤?
- 24. tMongoDBRow「執行命令」語法
- 25. 如何在iPhone中執行命令行?
- 26. 如何在命令行的語言環境中顯示文本?
- 27. Lotus Notes同步
- 28. Lotus Notes代理
- 29. Lotus Notes遷移
- 30. C#和Lotus Notes
下面還有更有效的答案。 Charles Ross給出的答案對我來說是最好的。 – andora 2018-03-09 23:00:20