<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>jquery regex &#8211; Sibeesh Passion</title>
	<atom:link href="https://www.sibeeshpassion.com/tag/jquery-regex/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.sibeeshpassion.com</link>
	<description>My passion towards life</description>
	<lastBuildDate>Mon, 02 Nov 2015 10:15:19 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>/wp-content/uploads/2017/04/Sibeesh_Passion_Logo_Small.png</url>
	<title>jquery regex &#8211; Sibeesh Passion</title>
	<link>https://www.sibeeshpassion.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Regex to remove a word from a string</title>
		<link>https://www.sibeeshpassion.com/regex-to-remove-a-word-from-a-string/</link>
					<comments>https://www.sibeeshpassion.com/regex-to-remove-a-word-from-a-string/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Mon, 02 Nov 2015 10:13:52 +0000</pubDate>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Find a word from a string]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jquery regex]]></category>
		<category><![CDATA[Regex to remove a word from a string]]></category>
		<guid isPermaLink="false">http://sibeecst_passion.com/?p=10890</guid>

					<description><![CDATA[In this post we will see how we can remove a particular word from a string entirely in jQuery. [js] var newString= oldString.replace(/Unspecified/g, &#8221;); [/js] Here I am removing the word Unspecified from my variable oldString. Please see my other posts related to JQuery here: JQuery Posts Kindest Regards Sibeesh Venu]]></description>
										<content:encoded><![CDATA[<p>In this post we will see how we can remove a particular word from a string entirely in <a href="http://sibeeshpassion.com/category/jquery" target="_blank">jQuery</a>. </p>
<p>[js]<br />
var newString= oldString.replace(/Unspecified/g, &#8221;);<br />
[/js]</p>
<p>Here I am removing the word Unspecified from my variable oldString. </p>
<p>Please see my other posts related to JQuery here: <a href="http://sibeeshpassion.com/tag/jquery/" target="_blank">JQuery Posts</a></p>
<p>Kindest Regards<br />
Sibeesh Venu</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.sibeeshpassion.com/regex-to-remove-a-word-from-a-string/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Remove % and $ From a String using JQuery</title>
		<link>https://www.sibeeshpassion.com/remove-and-from-a-string-using-jquery/</link>
					<comments>https://www.sibeeshpassion.com/remove-and-from-a-string-using-jquery/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Sun, 31 May 2015 14:03:36 +0000</pubDate>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[jquery regex]]></category>
		<category><![CDATA[jquery replace]]></category>
		<guid isPermaLink="false">https://sibeeshpassion.com/?p=3432</guid>

					<description><![CDATA[[js] var num=&#8217;$100%&#8217;; $(&#8216;div&#8217;).text(num.replace(/\,/g, &#8221;).replace(/\$/g, &#8221;).replace(/\%/g, &#8221;)); [/js] Kindest Regards Sibeesh Venu]]></description>
										<content:encoded><![CDATA[<p>[js]<br />
var num=&#8217;$100%&#8217;;<br />
$(&#8216;div&#8217;).text(num.replace(/\,/g, &#8221;).replace(/\$/g, &#8221;).replace(/\%/g, &#8221;));<br />
[/js]<br />
Kindest Regards<br />
Sibeesh Venu</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.sibeeshpassion.com/remove-and-from-a-string-using-jquery/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to remove the spaces between the string in JQuery</title>
		<link>https://www.sibeeshpassion.com/how-to-remove-the-spaces-between-the-string-in-jquery/</link>
					<comments>https://www.sibeeshpassion.com/how-to-remove-the-spaces-between-the-string-in-jquery/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Sun, 31 May 2015 13:58:06 +0000</pubDate>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[jquery regex]]></category>
		<category><![CDATA[jquery replace]]></category>
		<guid isPermaLink="false">https://sibeeshpassion.com/?p=3381</guid>

					<description><![CDATA[How to remove the spaces between the string in JQuery. [js] var str=&#34;Sibeesh Passion&#34; var strAfter=str.replace(/\s/g, &#8221;); [/js]]]></description>
										<content:encoded><![CDATA[<p>How to remove the spaces between the string in JQuery.<br />
[js]<br />
var str=&quot;Sibeesh Passion&quot;<br />
var strAfter=str.replace(/\s/g, &#8221;);<br />
[/js]</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.sibeeshpassion.com/how-to-remove-the-spaces-between-the-string-in-jquery/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
