<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Removing trailing spaces in eScript</title>
	<atom:link href="http://siebelconsultant.net/removing-trailing-spaces-in-escript/feed/" rel="self" type="application/rss+xml" />
	<link>http://siebelconsultant.net/removing-trailing-spaces-in-escript/</link>
	<description>Diary of a Siebel Consultant</description>
	<lastBuildDate>Mon, 14 Jun 2010 11:54:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Mounica</title>
		<link>http://siebelconsultant.net/removing-trailing-spaces-in-escript/comment-page-1/#comment-25441</link>
		<dc:creator>Mounica</dc:creator>
		<pubDate>Tue, 05 Jan 2010 15:32:24 +0000</pubDate>
		<guid isPermaLink="false">http://siebelconsultant.net/removing-trailing-spaces-in-escript/#comment-25441</guid>
		<description>Hi,

Have a question in escript..

I have a address coming from a website and my requirement is to trim the left and right spaces if there are any.

STREET = &#039; 1493 cordova st  &#039;
STATE= &#039;FL  &#039;
CITY=&#039;Miami&#039;
COUNTRY= &#039; USA &#039;
ZIPCODE= &#039;34356-5657 &#039;

Could you please let me know how can i do it..</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Have a question in escript..</p>
<p>I have a address coming from a website and my requirement is to trim the left and right spaces if there are any.</p>
<p>STREET = &#8216; 1493 cordova st  &#8216;<br />
STATE= &#8216;FL  &#8216;<br />
CITY=&#8217;Miami&#8217;<br />
COUNTRY= &#8216; USA &#8216;<br />
ZIPCODE= &#8217;34356-5657 &#8216;</p>
<p>Could you please let me know how can i do it..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wim</title>
		<link>http://siebelconsultant.net/removing-trailing-spaces-in-escript/comment-page-1/#comment-15971</link>
		<dc:creator>Wim</dc:creator>
		<pubDate>Wed, 28 Jan 2009 19:12:53 +0000</pubDate>
		<guid isPermaLink="false">http://siebelconsultant.net/removing-trailing-spaces-in-escript/#comment-15971</guid>
		<description>&gt;&gt; Mike:
Thanks for sharing.</description>
		<content:encoded><![CDATA[<p>>> Mike:<br />
Thanks for sharing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike M. Lin</title>
		<link>http://siebelconsultant.net/removing-trailing-spaces-in-escript/comment-page-1/#comment-15865</link>
		<dc:creator>Mike M. Lin</dc:creator>
		<pubDate>Mon, 26 Jan 2009 23:15:48 +0000</pubDate>
		<guid isPermaLink="false">http://siebelconsultant.net/removing-trailing-spaces-in-escript/#comment-15865</guid>
		<description>Here&#039;s a slick one-liner for you, using regular expressions.

function trim (s)
{	// takes a string, removes leading and trailing whitespace
	// characters.  returns the resulting &#039;trimmed&#039; text.

	return (s.replace (/^\s+/, &quot;&quot;).replace (/\s+$/, &quot;&quot;)); // all at once
}</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a slick one-liner for you, using regular expressions.</p>
<p>function trim (s)<br />
{	// takes a string, removes leading and trailing whitespace<br />
	// characters.  returns the resulting &#8216;trimmed&#8217; text.</p>
<p>	return (s.replace (/^\s+/, &#8220;&#8221;).replace (/\s+$/, &#8220;&#8221;)); // all at once<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emil</title>
		<link>http://siebelconsultant.net/removing-trailing-spaces-in-escript/comment-page-1/#comment-10</link>
		<dc:creator>Emil</dc:creator>
		<pubDate>Sat, 07 Jul 2007 20:52:12 +0000</pubDate>
		<guid isPermaLink="false">http://siebelconsultant.net/removing-trailing-spaces-in-escript/#comment-10</guid>
		<description>Ok, guys, I know this is a shameless plug, but since you are talking about eScript, I&#039;d like to share a simple tool that I wrote, which is available at our web site...it basically helps you get some idea of what Siebel eScript is really capabale of doing. It&#039;s called the codeFerret and it&#039;s worked out really well for my team.

Here is a link to a blog article that helps you understand what this tool can do for you: http://www.toolsandmethods.com/wordpress</description>
		<content:encoded><![CDATA[<p>Ok, guys, I know this is a shameless plug, but since you are talking about eScript, I&#8217;d like to share a simple tool that I wrote, which is available at our web site&#8230;it basically helps you get some idea of what Siebel eScript is really capabale of doing. It&#8217;s called the codeFerret and it&#8217;s worked out really well for my team.</p>
<p>Here is a link to a blog article that helps you understand what this tool can do for you: <a href="http://www.toolsandmethods.com/wordpress" rel="nofollow">http://www.toolsandmethods.com/wordpress</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sadmin</title>
		<link>http://siebelconsultant.net/removing-trailing-spaces-in-escript/comment-page-1/#comment-9</link>
		<dc:creator>Sadmin</dc:creator>
		<pubDate>Mon, 05 Mar 2007 18:44:39 +0000</pubDate>
		<guid isPermaLink="false">http://siebelconsultant.net/removing-trailing-spaces-in-escript/#comment-9</guid>
		<description>Thanks for the compliment.

At this time there are lots of companies looking for Siebel developers. And according to some people who are from outside of Europe, the jos in Europe are very good (and well paid).</description>
		<content:encoded><![CDATA[<p>Thanks for the compliment.</p>
<p>At this time there are lots of companies looking for Siebel developers. And according to some people who are from outside of Europe, the jos in Europe are very good (and well paid).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: j</title>
		<link>http://siebelconsultant.net/removing-trailing-spaces-in-escript/comment-page-1/#comment-8</link>
		<dc:creator>j</dc:creator>
		<pubDate>Mon, 05 Mar 2007 07:18:03 +0000</pubDate>
		<guid isPermaLink="false">http://siebelconsultant.net/removing-trailing-spaces-in-escript/#comment-8</guid>
		<description>Hi mate... greetings from Australia :)

Nice blog... I&#039;ve been developing in Siebel for 9 months so far. Very intensive training and work, but it sure is good to learn a hell of a lot so quickly.

Anyway... looking at this problem quickly using two functions that come to mind - split and replace - shows that they are more problematic in implementation. :)

Cheers for the elegant solution. A quick question though... how are the jobs over in Europe?</description>
		<content:encoded><![CDATA[<p>Hi mate&#8230; greetings from Australia <img src='http://siebelconsultant.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Nice blog&#8230; I&#8217;ve been developing in Siebel for 9 months so far. Very intensive training and work, but it sure is good to learn a hell of a lot so quickly.</p>
<p>Anyway&#8230; looking at this problem quickly using two functions that come to mind &#8211; split and replace &#8211; shows that they are more problematic in implementation. <img src='http://siebelconsultant.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Cheers for the elegant solution. A quick question though&#8230; how are the jobs over in Europe?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
