Jump to content

Module:String

Ón Vicipéid, an chiclipéid shaor.

Documentation for this module may be created at Module:String/doc

    
    local result;

    if count ~= nil then
        result = mw.ustring.gsub( source_str, pattern, replace, count );
    else
        result = mw.ustring.gsub( source_str, pattern, replace );
    end