<?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>else &#8211; カミュプリィの雑多なメモ</title>
	<atom:link href="https://www.commuply.co.jp/technic/memo/tag/else/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.commuply.co.jp/technic/memo</link>
	<description></description>
	<lastBuildDate>Thu, 19 Dec 2024 01:39:48 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.commuply.co.jp/technic/memo/wp-content/uploads/site-icon-150x150.png</url>
	<title>else &#8211; カミュプリィの雑多なメモ</title>
	<link>https://www.commuply.co.jp/technic/memo</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>[言語比較]If : 条件によって分岐</title>
		<link>https://www.commuply.co.jp/technic/memo/if/</link>
		
		<dc:creator><![CDATA[ume]]></dc:creator>
		<pubDate>Sun, 20 Mar 2022 14:42:21 +0000</pubDate>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[@V2If]]></category>
		<category><![CDATA[else]]></category>
		<category><![CDATA[elseif]]></category>
		<category><![CDATA[End If]]></category>
		<category><![CDATA[Goto]]></category>
		<category><![CDATA[if]]></category>
		<category><![CDATA[Lotus Script]]></category>
		<category><![CDATA[Lotus 式言語]]></category>
		<category><![CDATA[Then]]></category>
		<category><![CDATA[VBScript]]></category>
		<category><![CDATA[ラベル]]></category>
		<category><![CDATA[分岐]]></category>
		<category><![CDATA[条件分岐]]></category>
		<category><![CDATA[言語比較]]></category>
		<guid isPermaLink="false">https://www.commuply.co.jp/technic/notesdomino/?p=150</guid>

					<description><![CDATA[Lotus Script 言語 　※If ～ Elseif ～ Elseif と繰り返せます　※Elseif Else ともに使わないことができます 　※If ～ Goto ～ Else ～ は改行せずに書きます VbS [&#8230;]]]></description>
										<content:encoded><![CDATA[
<h2 id="lotus-script-%25e8%25a8%2580%25e8%25aa%259e" class="wp-block-heading has-base-2-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--20)">Lotus Script 言語</h2>



<pre class="wp-block-code"><code>If 条件式 Then
　式
Elseif 条件式 Then
　式
Else
　式
End If</code></pre>



<p>　※If ～ Elseif ～ Elseif と繰り返せます<br>　※Elseif Else ともに使わないことができます</p>



<pre class="wp-block-code"><code>If 条件式 Goto ラベル
ラベル:
式</code></pre>



<pre class="wp-block-code"><code>If 条件式 Goto ラベル Else 式
ラベル:
式</code></pre>



<p>　※If ～ Goto ～ Else ～ は改行せずに書きます</p>



<h2 id="vbscript-%25e8%25a8%2580%25e8%25aa%259e" class="wp-block-heading has-base-2-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--20)">VbScript 言語</h2>



<pre class="wp-block-code"><code>If 条件式 Then
　式
Elseif 条件式 Then
　式
Else
　式
End If</code></pre>



<p>　※If ～ Elseif ～ Elseif と繰り返せます<br>　※Elseif Else ともに使わないことができます</p>



<h2 id="lotus-%25e5%25bc%258f%25e8%25a8%2580%25e8%25aa%259e" class="wp-block-heading has-base-2-background-color has-background" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--20)">Lotus 式言語</h2>



<ul class="wp-block-list">
<li>@If (条件式; 式; 式);<br>　『条件式; 式; 』は最大９９回繰り返せます</li>



<li>@V2If (条件式; 式; 式);<br>　※@V2If は旧バージョン用です、上位互換がある @If に書き換えることができます</li>
</ul>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>[PHP]if-else分岐</title>
		<link>https://www.commuply.co.jp/technic/memo/php-if-else%e5%88%86%e5%b2%90/</link>
		
		<dc:creator><![CDATA[ume]]></dc:creator>
		<pubDate>Mon, 07 Feb 2022 01:40:06 +0000</pubDate>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[else]]></category>
		<category><![CDATA[elseif]]></category>
		<category><![CDATA[if]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[分岐]]></category>
		<guid isPermaLink="false">https://www.commuply.co.jp/technic/website/?p=208</guid>

					<description><![CDATA[IF文での分岐は次のようになります。 if(条件) { 式;} if(条件) { 式;} elseif { 式;} else { 式;}]]></description>
										<content:encoded><![CDATA[
<p>IF文での分岐は次のようになります。</p>



<p>if(条件) {<br> 式;<br>}</p>



<p>if(条件) {<br> 式;<br>} elseif {<br> 式;<br>} else {<br> <code>式;<br>}</code></p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
