MatchPrefixAll ( theList ; thePrefix )
Rate this function: Average rating: 3.8 (9 votes) Discuss this Custom Function
Jeremiah Small, Soliant Consulting
http://jsmall.us
Returns all values from a list that matches the supplied prefix.
Sample Input:
MatchPrefixAll ( "layout1¶
layout2¶
layout3¶
printReport¶
printInvoice¶
printEstimate¶
layout4¶
layout5¶"
; "print" ) |
|
Sample Output:
printReport
printInvoice
printEstimate |
|
Description:
Updated so List parameter doesn't conflict with native List function.
Returns all values from a list that matches the supplied prefix. This version strips the CR off the end of the result list. For reference, Mike's original revision is included as a comment in the body of the CF above. There is an interesting thread on fmforums.com called "Piggy backing on a CF input parameter" if you are learning about CFs and and care to read a technical discussion about CFs.
Note: these functions are not guaranteed
or supported by BrianDunning.com. Please contact the individual
developer with any questions or problems.
This is my Custom Function and I want to
edit it
Discuss:There are no comments yet. Be the first to post a comment about this Custom Function! Please try to keep it brief & to the point. Anyone can post:
|
Newest Custom Functions:
| 1. |
RoundValues ( listOfValues; precision) |
| |
(Tue, Sep 07, 8:23pm) |
| 2. |
ApproxDateRange ( date1 ; date2 ) |
| |
(Tue, Sep 07, 11:44am) |
| 3. |
TimeCodeCalculations ( TCSMPTE01 ; TCSMPTE02 ; FrameRateOr ; FrameRateNew ; CalcType ) |
| |
(Sat, Sep 04, 9:31pm) |
| 4. |
Fedex_Country ( Country ) |
| |
(Fri, Sep 03, 11:07am) |
| 5. |
GetResultParameter( ParameterName ) |
| |
(Wed, Aug 25, 8:32am) |
| 6. |
GetListParameter ( ParameterList ; ParameterName ) |
| |
(Wed, Aug 25, 8:25am) |
| 7. |
Standard_Deviation( Field ; MaxLoopCount ; StartIndex ; StdDeviation ; ArithMeanValue ) |
| |
(Tue, Aug 24, 10:57am) |
| 8. |
Arithmetic_Mean ( Field ; MaxLoopCount ; StartIndex ; MeanValue ) |
| |
(Tue, Aug 24, 10:51am) |
 |
|