Lua中操作字串的基本方法整理

來源:互聯網
上載者:User

Lua中操作字串的基本方法整理

   這篇文章主要介紹了Lua中操作字串的基本方法整理,是Lua入門學習中的基礎知識,需要的朋友可以參考下

  字串是一個字元序列,以及控制字元。字串可以用三種形式被初始化,其中包括:

  單引號之間的字元

  雙引號之間的字元

  [] 之間的字元[[和]]

  對於上述三種形式的一個例子如下所示。

   代碼如下:

  string1 = "Lua"

  print(""String 1 is"",string1)

  string2 = 'Tutorial'

  print("String 2 is",string2)

  string3 = [["Lua Tutorial"]]

  print("String 3 is",string3)

  當我們運行上面的程式,會得到下面的輸出。

  代碼如下:

  "String 1" is Lua

  String 2 is Tutorial

  String 3 is "Lua Tutorial"

  逸出字元序列中使用字串來改變字元的正常解釋。例如列印雙引號(“”)在上面的例子中,我們已經使用“逸出序列,並且其使用列於下表中。

  字串操作

  Lua支援字串操作字串:

  現在,讓我們深入到幾個例子,看這些字串操作函數的行為。

  案例操作

  用於操縱字串轉換大寫和和小寫樣品代碼如下。

  代碼如下:

  string1 = "Lua";

  print(string.upper(string1))

  print(string.lower(string1))

  當我們運行上面的程式,會得到下面的輸出。

   代碼如下:

  LUA

  lua

  替換子字串

  與另一個替換一個字串的出現次數範例程式碼如下。

   代碼如下:

  string = "Lua Tutorial"

  -- replacing strings

  newstring = string.gsub(string,"Tutorial","Language")

  print("The new string is",newstring)

  當我們運行上面的程式,會得到下面的輸出。

   代碼如下:

  The new string is Lua Language

  尋找和反轉

  尋找字串的索引和扭轉字串中的範例程式碼如下。

   代碼如下:

  string = "Lua Tutorial"

  -- replacing strings

  print(string.find(string,"Tutorial"))

  reversedString = string.reverse(string)

  print("The new string is",reversedString)

  當我們運行上面的程式,會得到下面的輸出。

  代碼如下:

  5 12

  The new string is lairotuT auL

  格式化字串

  在我們的編程很多時候,我們可能需要在一個格式化的方式進行列印的字串。可以使用字串。格式化函數格式化輸出,如所示。

   代碼如下:

  string1 = "Lua"

  string2 = "Tutorial"

  number1 = 10

  number2 = 20

  -- Basic string formatting

  print(string.format("Basic formatting %s %s",string1,string2))

  -- Date formatting

  date = 2; month = 1; year = 2014

  print(string.format("Date formatting %02d/%02d/%03d", date, month, year))

  -- Decimal formatting

  print(string.format("%.4f",1/3))

  當我們運行上面的程式,會得到下面的輸出。

   代碼如下:

  Basic formatting Lua Tutorial

  Date formatting 02/01/2014

  0.3333[code]

  字元和位元組表示

  字元和位元組表示一個範例程式碼,用於從字串轉換字串內部表示,反之亦然。

  [code]-- Byte conversion

  -- First character

  print(string.byte("Lua"))

  -- Third character

  print(string.byte("Lua",3))

  -- first character from last

  print(string.byte("Lua",-1))

  -- Second character

  print(string.byte("Lua",2))

  -- Second character from last

  print(string.byte("Lua",-2))

  -- Internal Numeric ASCII Conversion

  print(string.char(97))

  當我們運行上面的程式,會得到下面的輸出。

   代碼如下:

  76

  97

  97

  117

  117

  a

  其它常用函數

  常見的字串操作,包括字串串連,找到字串,並在次重複相同的字串多次長度。這些操作在下面例子中給出。

   代碼如下:

  string1 = "Lua"

  string2 = "Tutorial"

  -- String Concatenations using ..

  print("Concatenated string",string1..string2)

  -- Length of string

  print("Length of string1 is ",string.len(string1))

  -- Repeating strings

  repeatedString = string.rep(string1,3)

  print(repeatedString)

  當我們運行上面的程式,會得到下面的輸出。

   代碼如下:

  Concatenated string LuaTutorial

  Length of string1 is 3

  LuaLuaLua

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.