基本介紹
- 外文名:UCase
- 類型:數學術語
UCASE()UCASE 函式把欄位的值轉換為大寫。SELECT UCASE(column_name) FROM table_name "Persons" 表:我們希望選取 "LastName" 和 "FirstName" 列的內容,然後把 "LastName" 列轉換為大寫。我們使用如下 SQL 語句:SELECT UCASE(...
LCase(string), UCase(string)返迴轉換為小寫/大寫字母的字元串 Left(string, length), Right(string, length)返回字元串左側/右側的指定數量的字元 Len(string)返回字元串長度 LTrim(string), RTrim(string), Trim(string)返回刪除左側...
dd if=filename of=filename1 conv=ucase 創建任意大小的空檔案[創建1GiB的稀疏檔案,或增加現有檔案的大小:dd if=/dev/zero of=mytestfile.out bs=1 count=0 seek=1G (更先進的工具是GNU coreutils中的fallocate或truncate。)...
4.21 UCase函式——將字元轉換為大寫 71 第5章 格式化函式 5.1 Format函式——格式化字元串 73 5.2 FormatDateTime函式——返回日期或時間格式表達式 75 5.3 FormatCurrency函式——返回貨幣值格式表達式 76 5.4 FormatNumber...
下面的代碼舉例說明了用 Drive 對象來訪問驅動器屬性:Sub ShowFreeSpace(drvPath) Dim fs, d, s Set fs = CreateObject("Scripting.FileSystemObject") Set d = fs.GetDrive(fs.GetDriveName(drvPath)) s = "Drive " & UCase(...
fs.GetDrive(fs.GetDriveName(drvPath))s = "驅動器 " & UCase(drvPath) & " - "s = s & d.VolumeName & vbCrLf s = s & "可用空間: " & FormatNumber(d.FreeSpace/1024, 0)s = s & "KB"MsgBox s End Sub ...
5.3.2 字元串函式LCase( )和UCase( )5.3.3 窗體的Print方法 5.3.4 Print方法的格式輸出函式 5.3.5 MsgBox函式 5.3.6 InputBox函式 5.4 典型考題及分析 第6章 選擇結構與循環結構程式設計 6.1 目的和要求 6.2 基礎...