<?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>Golang - Code Dodle</title>
	<atom:link href="https://www.codedodle.com/tag/golang/feed" rel="self" type="application/rss+xml" />
	<link>https://www.codedodle.com/tag/golang</link>
	<description>Coding Tips and Technical How-Tos</description>
	<lastBuildDate>Sat, 06 May 2023 02:21:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.1</generator>

<image>
	<url>https://www.codedodle.com/wp-content/uploads/2021/07/cropped-cd-logo-512-32x32.png</url>
	<title>Golang - Code Dodle</title>
	<link>https://www.codedodle.com/tag/golang</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Use TeeReader in Golang</title>
		<link>https://www.codedodle.com/go-teereader.html</link>
		
		<dc:creator><![CDATA[Hank Cheah]]></dc:creator>
		<pubDate>Sat, 06 May 2023 02:08:07 +0000</pubDate>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Golang]]></category>
		<guid isPermaLink="false">https://www.codedodle.com/?p=553</guid>

					<description><![CDATA[<p>TeeReader is reader that writes to a writer, w, as you read from reader, r. It is useful for situations where you need to read a reader multiple times. As you know, readers such as bytes.Buffer can be read one time only. This is the official io.TeeReader definition:- func TeeReader(r Reader, w Writer) Reader This is...</p>
<p>The post <a href="https://www.codedodle.com/go-teereader.html">How to Use TeeReader in Golang</a> appeared first on <a href="https://www.codedodle.com">Code Dodle</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>How to Create a Reverse Proxy using Golang</title>
		<link>https://www.codedodle.com/go-reverse-proxy-example.html</link>
		
		<dc:creator><![CDATA[Hank Cheah]]></dc:creator>
		<pubDate>Wed, 09 Nov 2022 08:47:24 +0000</pubDate>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Golang]]></category>
		<guid isPermaLink="false">https://www.codedodle.com/?p=516</guid>

					<description><![CDATA[<p>Go&#8217;s httputil package makes it really easy to create a reverse proxy. In this article, I&#8217;ll show you how to create a simple reverse proxy and ways you can extend and develop more complex features using it as the base. Simple Reverse Proxy using httputil The simplest version of Go reverse proxy requires just a...</p>
<p>The post <a href="https://www.codedodle.com/go-reverse-proxy-example.html">How to Create a Reverse Proxy using Golang</a> appeared first on <a href="https://www.codedodle.com">Code Dodle</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>How to Convert String to Slice of Characters in Go</title>
		<link>https://www.codedodle.com/go-string-to-char-slice.html</link>
		
		<dc:creator><![CDATA[Hank Cheah]]></dc:creator>
		<pubDate>Wed, 02 Nov 2022 10:07:11 +0000</pubDate>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Golang]]></category>
		<guid isPermaLink="false">https://www.codedodle.com/?p=501</guid>

					<description><![CDATA[<p>In this article, I&#8217;ll share with you a few ways to break a string into characters in Go: Using strings.Split() Using rune() &#8211; this is my preferred approach Using byte() 1. Break String into Character Substrings using strings.Split() Given a string and a delimiter, strings.Split() slices the string into a slice of substrings. When the...</p>
<p>The post <a href="https://www.codedodle.com/go-string-to-char-slice.html">How to Convert String to Slice of Characters in Go</a> appeared first on <a href="https://www.codedodle.com">Code Dodle</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>How to Compare Strings in Go</title>
		<link>https://www.codedodle.com/go-string-comparison.html</link>
		
		<dc:creator><![CDATA[Hank Cheah]]></dc:creator>
		<pubDate>Tue, 01 Nov 2022 12:44:56 +0000</pubDate>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Golang]]></category>
		<guid isPermaLink="false">https://www.codedodle.com/?p=495</guid>

					<description><![CDATA[<p>There are two ways to compare strings lexicographically in Go:- 1. Use built-in comparison operators (officially recommended &#8211; more details below) 2. Use strings.Compare() Compare Two Strings using Comparision Operators In addition to numbers, Go comparison operators such as ==, &#62;, &#62;=, &#60;, &#60;= also supports strings. This is the officially recommended way to do...</p>
<p>The post <a href="https://www.codedodle.com/go-string-comparison.html">How to Compare Strings in Go</a> appeared first on <a href="https://www.codedodle.com">Code Dodle</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>4 Ways to Split String into Subtrings in Go</title>
		<link>https://www.codedodle.com/go-split-string.html</link>
		
		<dc:creator><![CDATA[Hank Cheah]]></dc:creator>
		<pubDate>Thu, 27 Oct 2022 12:40:11 +0000</pubDate>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Golang]]></category>
		<guid isPermaLink="false">https://www.codedodle.com/?p=488</guid>

					<description><![CDATA[<p>In this tutorial, I&#8217;ll share with you four ways to split a string into a slice of substrings in Go. We&#8217;ll be using these 4 functions from Go&#8217;s strings package for the slicing task:- func Split(s, sep string) []string func SplitN(s, sep string, n int) []string func SplitAfter(s, sep string) []string func SplitAfterN(s, sep string,...</p>
<p>The post <a href="https://www.codedodle.com/go-split-string.html">4 Ways to Split String into Subtrings in Go</a> appeared first on <a href="https://www.codedodle.com">Code Dodle</a>.</p>
]]></description>
		
		
		
			</item>
	</channel>
</rss>
