Well I had a capital 's'. Strip down the code and build it back up. I'd
guess it's not the sub string function that's causing the problem.

Ade

-----Original Message-----
From: Rich Kroll [mailto:[EMAIL PROTECTED]
Sent: 27 December 2005 22:28
To: CF-Talk
Subject: RE: Java substring


This is where I'm currently at:

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(preStringLoc +
prePriceString.length(), postStringLoc);

        return returnPrice;

}
</cfscript>

And I keep getting errors that "The selected method substring was not
found", any ideas?

Rich

-----Original Message-----
From: Adrian Lynch [mailto:[EMAIL PROTECTED]
Sent: Tuesday, December 27, 2005 5:22 PM
To: CF-Talk
Subject: RE: Java substring

This works for me:

<cfset str = "Adrian Lynch">

<cfoutput>
        #str.subString(0, 8)#
</cfoutput>

<hr />

<cfscript>
        WriteOutput(str.subString(0, 6));
</cfscript>

Post your code, it might be something else.

Ade


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
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:227728
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