web-dev-qa-db-fra.com

Ruby - Comment sélectionner certains caractères de la chaîne

J'essaie de trouver une fonction pour sélectionner par ex. 100 premiers caractères de la chaîne. En PHP, il existe le substr fonction

Ruby a-t-il une fonction similaire?

62
user1946705

Essayez foo[0...100], n'importe quelle plage fera l'affaire. Les plages peuvent également devenir négatives. C'est bien expliqué dans la documentation de Ruby.

122
Sorrow

En utilisant le []- opérateur ( docs ):

foo[0, 100]  # Get 100 characters starting at position 0
foo[0..99]   # Get all characters in index range 0 to 99 (inclusive!)
foo[0...100] # Get all characters in index range 0 to 100 (exclusive!)

En utilisant .slice méthode ( docs ):

foo.slice(0, 100)  # Get 100 characters starting at position 0
foo.slice(0...100) # Behaves the same as operator [] 

Et pour être complet:

foo[0]         # Returns the indexed character, the first in this case
foo[-100, 100] # Get 100 characters starting at position -100
               # Negative indices are counted from the end of the string/array
               # Caution: Negative indices are 1-based, the last element is -1
foo[-100..-1]  # Get the last 100 characters in order
foo[-1..-100]  # Get the last 100 characters in reverse order
foo[-100...foo.length] # No index for one beyond last character

Mise à jour pour Ruby 2.6 : Interminables plages sont ici maintenant (à partir du 2018-12-25)!

foo[0..]      # Get all chars starting at the first. Identical to foo[0..-1]
foo[-100..]   # Get the last 100 characters
35
Christopher Oezbek