跳转至内容

Ada 编程/库/Ada.Strings

来自维基教科书,开放的书籍,面向开放的世界

Ada. Time-tested, safe and secure.
Ada. 经久耐用、安全可靠。

此语言特性从 Ada 95 开始可用。

Ada.Strings预定义语言环境 自 Ada 95 以来的一个单元。

此包是所有字符串包的基础包。它定义了常见的异常和常量。

这些子包是

--                     Standard Ada library specification
--   Copyright (c) 2003-2018 Maxim Reznik <[email protected]>
--   Copyright (c) 2004-2016 AXE Consultants
--   Copyright (c) 2004, 2005, 2006 Ada-Europe
--   Copyright (c) 2000 The MITRE Corporation, Inc.
--   Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc.
--   SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual
-- -------------------------------------------------------------------------

package Ada.Strings is
   pragma Pure (Strings);

   Space           : constant Character      := ' ';
   Wide_Space      : constant Wide_Character := ' ';
   Wide_Wide_Space : constant Wide_Wide_Character := ' ';

   Length_Error, Pattern_Error, Index_Error, Translation_Error
     : exception;

   type Alignment  is (Left, Right, Center);
   type Truncation is (Left, Right, Error);
   type Membership is (Inside, Outside);
   type Direction  is (Forward, Backward);
   type Trim_End   is (Left, Right, Both);

end Ada.Strings;

维基教科书

[编辑 | 编辑源代码]

外部示例

[编辑源代码]

Ada 参考手册

[编辑 | 编辑源代码]

开源实现

[编辑 | 编辑源代码]

FSF GNAT


drake

华夏公益教科书