以下は私のコードです。このコードを単純化するには?
私はあまりにも多くの&&
条件を避けたいです。Rubyであまりにも多くのAND/ORを単純化する方法
私は2つのURLきたとします
ipt_string = www.abc.com/catogories/profile/heels/
ipt_string = www.abc.com/me/payment/auth/
def to_uri(ipt_string)
point = ipt_string.gsub('{', '#{')
if @profile &&
!point.include?('/catogories/') &&
!point.include?('/profile/') &&
!point.include?('/heels/') &&
!point.include?('/me/') &&
!point.include?('/payment/') &&
!point.include?('/auth/')
{ ... }
「poin」とはt? – GolfWolf
def to_uri(ipt_string) ポイント= ipt_string.gsub( '{'、 '#{') –
は文字列ですか? – GolfWolf