File: nl_stringconstants.html

package info (click to toggle)
basic256 1.1.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 24,460 kB
  • sloc: cpp: 10,148; yacc: 3,023; java: 1,091; lex: 1,051; sh: 117; xml: 33; makefile: 15
file content (96 lines) | stat: -rw-r--r-- 5,731 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en" dir="ltr" class="no-js">
<head>
    <meta charset="utf-8" />
    <title>nl:stringconstants [BASIC 256 - Language Documentation]</title>
<link rel="stylesheet" type="text/css" href="lib/exe/cssc171c1dfe8519125bb40a349172b001a.css"/>
    </head>
<body>
    <div id="dokuwiki__site"><div id="dokuwiki__top" class="site dokuwiki mode_show tpl_dokuwiki     ">
<div id="dokuwiki__header"><div class="pad group">
    <div class="headings group">
        <h1><a href="start.html"  accesskey="h" title="[H]"><img src="lib/tpl/dokuwiki/images/logo.png" width="64" height="64" alt="" /> <span>BASIC 256 - Language Documentation</span></a></h1>
            </div>
    </div>
            <div class="breadcrumbs">
                            <div class="youarehere"><span class="bchead">You are here: </span><span class="home"><bdi><a href="start.html" class="wikilink1" title="start">start</a></bdi></span> » <bdi><a href="nl_start.html" class="wikilink1" title="nl:start">nl</a></bdi> » <bdi><span class="curid"><a href="nl_stringconstants.html" class="wikilink1" title="nl:stringconstants">stringconstants</a></span></bdi></div>
                    </div>
    <hr class="a11y" />
</div></div>
        <div class="wrapper group">
            <div id="dokuwiki__content"><div class="pad group">
                <div class="pageId"><span>nl:stringconstants</span></div>
                <div class="page group">
<div id="dw__toc">
<h3 class="toggle">Table of Contents</h3>
<div>
<ul class="toc">
<li class="level1"><div class="li"><a href="nl_stringconstants.html#string_constante">String constante</a></div>
<ul class="toc">
<li class="level2"><div class="li"><a href="nl_stringconstants.html#wat_is_een_string_constante">Wat is een string constante?</a></div></li>
<li class="level2"><div class="li"><a href="nl_stringconstants.html#hoe_schrijf_je_een_string_constante">Hoe schrijf je een string constante?</a></div></li>
<li class="level2"><div class="li"><a href="nl_stringconstants.html#hoe_ziet_het_eruit">Hoe ziet het eruit?</a></div></li>
</ul></li>
</ul>
</div>
</div>
<h1 class="sectionedit1" id="string_constante">String constante</h1>
<div class="level1">
</div>
<h2 class="sectionedit2" id="wat_is_een_string_constante">Wat is een string constante?</h2>
<div class="level2">
<p>
<strong>String</strong> is een Engels woord en betekent “een reeks karakters”. Een karakter is zoveel als een letter, een getal, een leesteken.
</p>
<p>
Een <strong>string constante</strong> blijft ook zijn waarde behouden. Het verandert niet. “Hello World” blijft “Hello world”.
</p>
</div>
<h2 class="sectionedit3" id="hoe_schrijf_je_een_string_constante">Hoe schrijf je een string constante?</h2>
<div class="level2">
<p>
Als je een string gebruikt in BASIC256 moet je beginnen met het dubbel aanhalingsteken ” en ook eindigen met hetzelfde teken. Doe je dat niet, … dan geeft de computer een foutmelding of erger nog, dan doet de computer iets wat niet voorzien had.
</p>
<p>
Zoals je kan zien, wordt een string constante op een andere manier getoond in BASIC356( andere kleur).
</p>
<p>
Dit zijn correcte <strong>String Constanten</strong>
</p>
<pre class="code basic4gl">  <span class="st0">&quot;&quot;</span>  <span class="br0">&#40;</span> een lege <span class="kw3">string</span><span class="br0">&#41;</span>
  <span class="st0">&quot; &quot;</span> <span class="br0">&#40;</span> een <span class="kw3">string</span> die een spatie bevat<span class="br0">&#41;</span>
  <span class="st0">&quot;3 + 56&quot;</span>  <span class="br0">&#40;</span>neen, dit is geen som, dit is een <span class="kw3">string</span><span class="br0">&#41;</span>
  <span class="st0">&quot;Hello World!&quot;</span>  <span class="br0">&#40;</span>zeer beroemde <span class="kw3">string</span> voor iemand die leert programmeren<span class="st0">&quot;
  &quot;</span>Ik ben <span class="nu0">9</span> jaar<span class="st0">&quot;
  &quot;</span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque vitae feugiat dolor<span class="st0">&quot; </span></pre>
</div>
<h2 class="sectionedit4" id="hoe_ziet_het_eruit">Hoe ziet het eruit?</h2>
<div class="level2">
<p>
Dit is het resultaat in BASIC256 ( print is de opdracht om de string te tonen)
</p>
<p>
<a href="http://doc.basic256.org/lib/exe/detail.php?id=nl_stringconstants&amp;media=nl:strings.png" class="media" title="nl:strings.png"><img src="lib/exe/nl_strings.png" class="media" alt="" /></a>
</p>
<p>
Als je echter het dubbel aanhalingteken vergeet, dan krijg je volgende foutmelding:
</p>
<p>
<a href="http://doc.basic256.org/lib/exe/detail.php?id=nl_stringconstants&amp;media=nl:wrong_string.png" class="media" title="nl:wrong_string.png"><img src="lib/exe/nl_wrong_string.png" class="media" alt="" /></a>
</p>
<p>
<a href="nl_numericconstants.html" class="wikilink1" title="nl:numericconstants">vorige</a> | <a href="nl_start.html" class="wikilink1" title="nl:start">Begin</a> | <a href="nl_variables.html" class="wikilink1" title="nl:variables">volgende</a>
</p>
</div>
                                    </div>
                <div class="docInfo"><bdi>nl/stringconstants.txt</bdi> · Last modified: 2012/01/29 14:46 by <bdi>tlesseliers</bdi></div>
                            </div></div>
            <hr class="a11y" />
        </div>
<div id="dokuwiki__footer"><div class="pad">
    <div class="license">Except where otherwise noted, content on this wiki is licensed under the following license: <bdi><a href="http://creativecommons.org/licenses/by-sa/3.0/" rel="license" class="urlextern">CC Attribution-Share Alike 3.0 Unported</a></bdi></div>
</div></div>
    </div></div>
    <div id="screen__mode" class="no"></div>
</body>
</html>