Difference between revisions of "!"

From Free Pascal wiki
Jump to navigationJump to search
(Created page with "{{!}} <div style="float:left; margin: 0 20px 10px 0; padding:40px; font-size:500%; font-family: Georgia; background-color: #f9f9f9; border: 2px solid #777777;"><nowiki> ! </n...")
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{!}}
+
{{LanguageBar}}
 
 
 
<div style="float:left; margin: 0 20px 10px 0; padding:40px; font-size:500%; font-family: Georgia; background-color: #f9f9f9; border: 2px solid #777777;"><nowiki> ! </nowiki> </div>
 
<div style="float:left; margin: 0 20px 10px 0; padding:40px; font-size:500%; font-family: Georgia; background-color: #f9f9f9; border: 2px solid #777777;"><nowiki> ! </nowiki> </div>
  
In [[ASCII]], the character code decimal <syntaxhighlight lang="pascal" enclose="none">33</syntaxhighlight> (or [[Hexadecimal|hexadecimal]] <syntaxhighlight lang="pascal" enclose="none">21</syntaxhighlight>) is defined to be <syntaxhighlight lang="pascal" enclose="none">!</syntaxhighlight> (Exclamation mark).
+
In [[ASCII]], the character code decimal <syntaxhighlight lang="pascal" inline>33</syntaxhighlight> (or [[Hexadecimal|hexadecimal]] <syntaxhighlight lang="pascal" inline>21</syntaxhighlight>) is defined to be <syntaxhighlight lang="pascal" inline>!</syntaxhighlight> (Exclamation mark).
  
 
== Lazarus ==
 
== Lazarus ==
In Lazarus the <syntaxhighlight lang="pascal" enclose="none">!</syntaxhighlight> is used to
+
In Lazarus the <syntaxhighlight lang="pascal" inline>!</syntaxhighlight> is used to
* in  [[TMaskEdit|<syntaxhighlight lang="pascal" enclose="none">TMaskEdit</syntaxhighlight>]] indicate EditMask is formed with a pattern of character with the following meaning: Trim leading blanks, otherwise trim trailing blanks from the data.
+
* in  [[TMaskEdit|<syntaxhighlight lang="pascal" inline>TMaskEdit</syntaxhighlight>]] indicate EditMask is formed with a pattern of character with the following meaning: Trim leading blanks, otherwise trim trailing blanks from the data.

Latest revision as of 20:34, 13 October 2022

English (en) português (pt)

 !

In ASCII, the character code decimal 33 (or hexadecimal 21) is defined to be ! (Exclamation mark).

Lazarus

In Lazarus the ! is used to

  • in TMaskEdit indicate EditMask is formed with a pattern of character with the following meaning: Trim leading blanks, otherwise trim trailing blanks from the data.