<?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/"
	
xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
>

<channel>
	<title>pipe - Bipon's Diary</title>
	<atom:link href="https://biponnotes.iglyphic.com/tag/pipe/feed/" rel="self" type="application/rss+xml" />
	<link>https://biponnotes.iglyphic.com</link>
	<description>Do good for others. It will come back in unexpected ways.</description>
	<lastBuildDate>Sun, 26 Jan 2020 06:24:51 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.10</generator>
<site xmlns="com-wordpress:feed-additions:1">168324471</site>	<item>
		<title>Angular 8 Build in Pipes</title>
		<link>https://biponnotes.iglyphic.com/angular-8-build-in-pipes/</link>
					<comments>https://biponnotes.iglyphic.com/angular-8-build-in-pipes/#respond</comments>
		
		<dc:creator><![CDATA[bipon68]]></dc:creator>
		<pubDate>Sun, 19 Jan 2020 05:01:55 +0000</pubDate>
				<category><![CDATA[Angular]]></category>
		<category><![CDATA[angular]]></category>
		<category><![CDATA[pipe]]></category>
		<guid isPermaLink="false">https://bipon.me/?p=387</guid>

					<description><![CDATA[<p>app.component.ts file app.component.html</p>
<p>The post <a href="https://biponnotes.iglyphic.com/angular-8-build-in-pipes/">Angular 8 Build in Pipes</a> first appeared on <a href="https://biponnotes.iglyphic.com">Bipon's Diary</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>app.component.ts file</p>



<pre class="wp-block-code"><code>import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  title = 'ngPipe';
  bithday = new Date(1993, 8, 10)
  name: string = 'Bipon';
  welcome: string = 'welcome';
  message = 'Welcome to my country';
  person = {
    name: 'bipon',
    profession: 'student'
  }
  public date = new Date();
}</code></pre>



<p>app.component.html</p>



<pre class="wp-block-code"><code>&lt;p>Kamal birthday {{bithday | date | uppercase}}&lt;/p>

&lt;h3>Text Pipes&lt;/h3>
&lt;p>He man! KI Khobor&lt;/p>
&lt;p>He man! {{name | lowercase}}&lt;/p>
&lt;p>He man! {{name | uppercase}}&lt;/p>
&lt;p>Message:  {{message | titlecase}}&lt;/p>
&lt;p>slice:  {{welcome | slice: 3:5}}&lt;/p>
&lt;p>He man! {{person | json}}&lt;/p> &lt;br/>

&lt;h3>Number Pipes&lt;/h3>
&lt;p>{{5.678 | number: '1.2-3'}}&lt;/p>
&lt;p>{{5.678 | number: '3.4-5'}}&lt;/p>
&lt;p>{{5.678 | number: '3.1-2'}}&lt;/p>

&lt;p>{{.25 | percent}}&lt;/p>
&lt;p>{{.25 | currency}}&lt;/p>
&lt;p>{{.25 | currency: 'GBP'}}&lt;/p>
&lt;p>{{.25 | currency: 'ERO': 'code'}}&lt;/p></code></pre><p>The post <a href="https://biponnotes.iglyphic.com/angular-8-build-in-pipes/">Angular 8 Build in Pipes</a> first appeared on <a href="https://biponnotes.iglyphic.com">Bipon's Diary</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://biponnotes.iglyphic.com/angular-8-build-in-pipes/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">387</post-id>	</item>
	</channel>
</rss>
