Created
May 19, 2009 18:40
-
-
Save dimiro1/114308 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def cut_string(text, length, ending) | |
text[0...length].strip + ending | |
end | |
# forma de uso | |
texto = "meu texto é muito comprido, por isso eu preciso de um metodo que minimize ele" | |
cut_string(texto, 10, "...") # "meu texto ..." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment