Home > Domino Tips > Developer > Agent > @Explode in agent
Domino Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

AGENT

@Explode in agent


Sergey Sinelnikov
10.23.2003
Rating: -2.80- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


View member feedback to this tip.

Move it on script library and use this code when you need @Explode in an agent or when you need to perform a Query_String variable.

Code

Function getURLargs
(query As String,pattern As
 String, flag As Integer) As Variant
 '************** S.Sinelnikov 2003 
*******************
 'this function return array of arguments 
from Query_String or another string variable (query).
 ' If flag=false, it works as @Explode(query,pattern), 
 ' if flag=true, return list of arguments (&arg=) value. 
 'For example:
 ' getURLargs("&uid=","openAgent&del=20
&uid=10&uid=12&cat=jachts",true) 
 'returns array of string 10,12
 'if query hasn't pattern return Empty Value
 '**********************************************************
 Dim i,j  As Integer
 Dim args() As String
 
 'this loop counts number of arguments
 i=1
 While Strrightback(query,pattern,1,i)<>""
  i=i+1
 Wend
 'next code executes if anything pattern 
was find in query
 If I>1 Then
  Redim args(i-2)
  
 'this loop stored values of arguments in "args" array
  For j=0 To i-2
   args(j)=Strleft(Strright(query,pattern,1,
j+1)+pattern,pattern,1)
  Next
  
 'this code transform values of arguments, 
because args(2) from comment 
has value "12&cat=jachts"
  If flag Then
   Forall p In args
    If Instr(1,p,"&")>0 Then
     p=Left$(p,Instr(1,p,"&")-1)
    End If
   End Forall
  End If
 '***************************************
*******************
  getURLargs=args
 End If
End Function

MEMBER FEEDBACK TO THIS TIP

I think the Evaluate statement is underrated by many LotusScript-only developers. That whole script could be done with one Evaluate statement:

Function getURLargs (query as String, 
pattern as String)
   args = Evaluate(|@Trim(@Right
(@Explode("| & query & |"; "&"); "| &
   pattern & |"))|)
   getURLargs = args
End Function
And now that most of the memory leak issues have been solved, I use Evaluate a lot for just this type of thing.

-- Robert A.

*******************************************

This tip attempts to duplicate @Explode functionality already available in LotusScript. The LotusScript equivalent of @Explode is the "Split" function available with ND6.

-- Gene K.

Do you have comments of your own? Let us know.

This tip was submitted to the SearchDomino.com tip library by member Sergey Sinelnikov. 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.

Rate this Tip
To rate tips, you must be a member of SearchDomino.com.
Register now to start rating these tips. Log in if you are already a member.




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   



RELATED CONTENT
Agent
Run or restart Notes/Domino agents via text messages
Approve Lotus Notes documents using a BlackBerry mobile device
LotusScript agent indexes Lotus Notes/Domino databases
Open documents in Lotus Notes from the Web without a UNID
Fix and update Lotus Notes documents with limited access
Verify scheduled agent status with Domino Extensible Language (DXL)
How to export data from a Lotus Notes database to a CSV file
Enable or disable scheduled agents without opening the Lotus Notes database design
Creating custom views in Lotus Notes databases
Editing fields in a Lotus Notes view with Ajax

Lotus Notes Domino Agents
How the Agent Profiler tool improves Notes/Domino performance
Run or restart Notes/Domino agents via text messages
Calculating results for a column in a Lotus Notes view
Approve Lotus Notes documents using a BlackBerry mobile device
LotusScript agent indexes Lotus Notes/Domino databases
Top 10 Lotus Notes/Domino coding and development tips of 2008
Open documents in Lotus Notes from the Web without a UNID
Fix and update Lotus Notes documents with limited access
Verify scheduled agent status with Domino Extensible Language (DXL)
Top 10 Lotus Notes Domino programming and development tips of 2007

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



Domino & Lotus Notes Security Solutions: Authentication, Antispam, Encryption and Antivirus
HomeTopicsITKnowledge ExchangeTipsAsk the ExpertsMultimediaWhite PapersDomino IT Downloads
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 1999 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts