Martijn Laan 1 Minggu lalu
induk
melakukan
7dd7b890ff
2 mengubah file dengan 14 tambahan dan 14 penghapusan
  1. 10 10
      ISHelp/isxfunc.xml
  2. 4 4
      Projects/Src/Shared.ScriptFunc.pas

+ 10 - 10
ISHelp/isxfunc.xml

@@ -863,23 +863,23 @@ begin
         <description><p>Returns the length of the specified string.</p></description>
       </function>
       <function>
-        <name>Lowercase</name>
-        <prototype>function Lowercase(S: AnyString): String;</prototype>
-        <description><p>Returns a copy of the string S, but with all 7-bit ASCII characters between 'A' and 'Z' converted to lowercase. To convert 8-bit international characters, use AnsiLowercase instead.</p></description>
+        <name>LowerCase</name>
+        <prototype>function LowerCase(S: AnyString): String;</prototype>
+        <description><p>Returns a copy of the string S, but with all 7-bit ASCII characters between 'A' and 'Z' converted to lowercase. To convert 8-bit international characters, use AnsiLowerCase instead.</p></description>
       </function>
       <function>
-        <name>Uppercase</name>
-        <prototype>function Uppercase(S: AnyString): String;</prototype>
-        <description><p>Returns a copy of the string S, but with all 7-bit ASCII characters between 'a' and 'z' converted to uppercase. To convert 8-bit international characters, use AnsiUppercase instead.</p></description>
+        <name>UpperCase</name>
+        <prototype>function UpperCase(S: AnyString): String;</prototype>
+        <description><p>Returns a copy of the string S, but with all 7-bit ASCII characters between 'a' and 'z' converted to uppercase. To convert 8-bit international characters, use AnsiUpperCase instead.</p></description>
       </function>
       <function>
-        <name>AnsiLowercase</name>
-        <prototype>function AnsiLowercase(S: AnyString): String;</prototype>
+        <name>AnsiLowerCase</name>
+        <prototype>function AnsiLowerCase(S: AnyString): String;</prototype>
         <description><p>Returns a string that is a copy of the given string converted to lowercase. The conversion uses the current Windows locale. This function supports multi-byte character sets (MBCS).</p></description>
       </function>
       <function>
-        <name>AnsiUppercase</name>
-        <prototype>function AnsiUppercase(S: AnyString): String;</prototype>
+        <name>AnsiUpperCase</name>
+        <prototype>function AnsiUpperCase(S: AnyString): String;</prototype>
         <description><p>Returns a string that is a copy of the given string converted to uppercase. The conversion uses the current Windows locale. This function supports multi-byte character sets (MBCS).</p></description>
       </function>
       <function>

+ 4 - 4
Projects/Src/Shared.ScriptFunc.pas

@@ -49,10 +49,10 @@ var
     'function Copy(S: AnyString; Index, Count: Integer): String;',
     'function Length(S: AnyString): LongInt;',
     'procedure SetLength(var S: AnyString; L: LongInt);',
-    'function Lowercase(S: AnyString): String;',
-    'function Uppercase(S: AnyString): String;',
-    'function AnsiLowercase(S: AnyString): String;',
-    'function AnsiUppercase(S: AnyString): String;',
+    'function LowerCase(S: AnyString): String;',
+    'function UpperCase(S: AnyString): String;',
+    'function AnsiLowerCase(S: AnyString): String;',
+    'function AnsiUpperCase(S: AnyString): String;',
     'function StringOfChar(C: Char; I : LongInt): String;',
     'procedure Delete(var S: AnyString; Index, Count: Integer);',
     'procedure Insert(Source: AnyString; var Dest: AnyString; Index: Integer);',