namec.srl

来自「软件磁盘整理工具  」· SRL 代码 · 共 44 行

SRL
44
字号
-- This is the symbol rename list used by ToolDriver's NameChanger
-- utility. For more information, see the end of this file.
------------------------------------------------------------------------------
++CaseInsensitive
EMP_NM    Employee_Name
++CaseSensitive
QOH  QuantityOnHand
------------------------------------------------------------------------------
-- This file contains three types of lines:
------------------------------------------------------------------------------
-- 1. A comment line has "--' in the first two columns.
-- 2. An option line has "++' in the first two columns followed
--    immediately by one of these two options:
--       CaseSensitive     -   start case sensitivity
--       CaseInsensitive   -   start ignoring case
-- 3. A symbol remapping line has two symbols surrounded by white
--    space. The first symbol will be replaced by the second one.
--    Note that NameChanger just transforms individual symbols, not
--    partial symbols or multiple symbols.
------------------------------------------------------------------------------
-- The controls above tell NameChanger to transform the complete
-- symbol "EMP_NM" to "EMPLOYEE_NM" everywhere it's found, independently of
-- the case used.
--
-- The chart below shows the effect:
--
--   Old Symbol     New Symbol
--     emp_nm         EMPLOYEE_NAME
--     Emp_nm         EMPLOYEE_NAME
--     EMP_NM         EMPLOYEE_NAME
--     EMP_NM2        --- no change ---
--     P_emp_nm_2     --- no change ---
--
-- It also specifies that the complete symbol "QOH" is to be
-- changed to "QuantityOnHand", but only where the case matches exactly.
--
-- The chart below shows the effect:
--
--   Old Symbol     New Symbol
--     qoh            --- no change ---
--     QOH            QuantityOnHand
--     aqohb          --- no change ---
------------------------------------------------------------------------------

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?