web-dev-qa-db-fra.com

Comment retourner la sous-chaîne d'une chaîne entre deux chaînes en Ruby?

Comment pourrais-je retourner la chaîne entre deux marqueurs de chaîne d'une chaîne en Ruby?

Par exemple, j'ai:

  • input_string
  • str1_markerstring
  • str2_markerstring

Vous voulez faire quelque chose comme:

input_string.string_between_markers(str1_markerstring, str2_markerString)

Exemple de texte:

1.9.3-p0 :020 >   s
 => "Charges for the period 2012-01-28 00:00:00 to 2012-02-27 23:59:59:<br>\nAny Network Cap remaining: $366.550<br>International Cap remaining: $0.000"
1.9.3-p0 :021 > str1_markerstring
 => "Charges for the period"
1.9.3-p0 :022 > str2_markerstring
 => "Any Network Cap"
1.9.3-p0 :023 > s[/#{str1_markerstring}(.*?)#{str2_markerstring}/, 1]
 => nil  # IE DIDN'T WORK IN THIS CASE
37
Greg
input_string = "blahblahblahSTARTfoofoofooENDwowowowowo"
str1_markerstring = "START"
str2_markerstring = "END"

input_string[/#{str1_markerstring}(.*?)#{str2_markerstring}/m, 1]
#=> "foofoofoo"

ou pour le mettre dans une méthode:

class String
  def string_between_markers marker1, marker2
    self[/#{Regexp.escape(marker1)}(.*?)#{Regexp.escape(marker2)}/m, 1]
  end
end

"blahblahblahSTARTfoofoofooENDwowowowowo".string_between_markers("START", "END")
#=> "foofoofoo"
77
sawa

Il suffit de le diviser deux fois et d'obtenir la chaîne entre les marqueurs:

input_string.split("str1_markerstring").last.split("str2_markerstring").first
6
larry

Voici quelques façons alternatives de faire ce que vous voulez, c'est ainsi que je procéderais:

s = "Charges for the period 2012-01-28 00:00:00 to 2012-02-27 23:59:59:<br>\nAny Network Cap remaining: $366.550<br>International Cap remaining: $0.000"  # => "Charges for the period 2012-01-28 00:00:00 to 2012-02-27 23:59:59:<br>\nAny Network Cap remaining: $366.550<br>International Cap remaining: $0.000"

dt1, dt2 = /period (\S+ \S+) to (\S+ \S+):/.match(s).captures  # => ["2012-01-28 00:00:00", "2012-02-27 23:59:59"]
dt1                                                            # => "2012-01-28 00:00:00"
dt2                                                            # => "2012-02-27 23:59:59"

Cela utilise "période" et "à" et la fin ":" pour marquer le début et la fin de la plage à rechercher, et saisir les caractères non blancs qui signifient la date et l'heure dans chaque horodatage.

Alternativement, l'utilisation de "named-captures" prédéfinit les variables:

/period (?<dt1>\S+ \S+) to (?<dt2>\S+ \S+):/ =~ s  # => 16
dt1                                                # => "2012-01-28 00:00:00"
dt2                                                # => "2012-02-27 23:59:59"

À partir de là, si vous souhaitez décomposer les valeurs renvoyées, vous pouvez les analyser en tant que dates:

require 'date'
d1 = DateTime.strptime(dt1, '%Y-%m-%d %H:%M:%S')  # => #<DateTime: 2012-01-28T00:00:00+00:00 ((2455955j,0s,0n),+0s,2299161j)>
d1.month                                          # => 1
d1.day                                            # => 28

Ou vous pouvez même utiliser des sous-captures:

matches = /period (?<dt1>(?<date1>\S+) (?<time1>\S+)) to (?<dt2>(?<date2>\S+) (?<time2>\S+)):/.match(s)
matches # => #<MatchData "period 2012-01-28 00:00:00 to 2012-02-27 23:59:59:" dt1:"2012-01-28 00:00:00" date1:"2012-01-28" time1:"00:00:00" dt2:"2012-02-27 23:59:59" date2:"2012-02-27" time2:"23:59:59">
matches['dt1']   # => "2012-01-28 00:00:00"
matches['date1'] # => "2012-01-28"
matches['time2'] # => "23:59:59"

Tout cela est documenté dans la documentation Regexp .

0
the Tin Man