lotus notes - Lotusscript NotesDocument values -


i analyzing module in lotuscript fetching notesdocument .

now consider example notesdocument encapsulates following data :

docvalue:<html><head> head </head><body>body</body></html> 

now how following work?

dim document notesdocument     dim data variant     ' assume code fetch notesdocument has been done. ' statement fetch html data.     data=document.docvalue(0) 

i did not find lotus documentation can fetch value after ":" separator(in case docvalue: seen in data above). please let me know how works or link documentation.

thanks in advance.

use strright(). gives string right search string:

data=strright(document.docvalue(0), ":") 

Comments