I got the function to work, it was a matter of needing to javacast() the
numbers before passing them to the substring() function, here is the final
code for anyone interested.  I am using this function to get specific html
elements from a page.  In my case the needed elements are wrapped with
specific <div> tags.  For example:

<cfset preString = "<div id='currentprice'>">
<cfset postString = "</div>">

<cfset loc = stripPrice(weeklyReport, preString, postString)>

<cfscript>
function stripPrice(pageHtml, prePriceString, postPriceString) {
        // look for the prePriceString
        preStringLoc = pageHtml.indexOf(prePriceString);
        
        if(preStringLoc eq -1)
                {
                        msg = "Coulden't find the prePriceString " +
prePriceString;
                        throw(msg);
                }
                
        // Found the prePriceString, so look for the post
        postStringLoc = pageHtml.indexOf(postPriceString, preStringLoc);
        
        if(postStringLoc eq -1)
        {
                msg = "Coulen't find the postPriceString " +
postPriceString;
                throw(msg);
        }
        
        returnPrice = pageHtml.substring(javaCast("int",preStringLoc +
prePriceString.length()), javaCast("int", postStringLoc));
        
        return returnPrice;
                
}
</cfscript>

Hth,
Rich



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:227727
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to