وحدة:اختصر

من أرابيكا، الموسوعة الحرة
اذهب إلى التنقل اذهب إلى البحث
local p = {};
function p.acronymize(frame)
	local name = frame.args[1] -- in this example, args[1] is the word Fred 
  local acronym = ""
  for word in name:gmatch("%w+") do
    acronym = acronym .. word:sub(1, 1):upper()
  end
  
  return acronym
end
return p 
--print(acronymize("lafd murrakab"))