Ruby中的字符串转换和子字符串让我感到困惑

时间:2011-09-04 20:36:16

标签: ruby type-conversion substring

我正在尝试学习红宝石(1.8.7)。我已经在php中编程了一段时间,我认为自己精通那种语言。我有一本书,我参考过,我看过许多介绍性的ruby教程,但我无法弄明白。

myFiles = ['/Users/', '/bin/bash', 'Phantom.file']
myFiles.each do |cFile|
  puts "File Name: #{cFile}"
  if File.exists?(cFile)
    puts "#{cFile} is a file"
    cFileStats = File.stat(cFile)
    puts cFileStats.inspect
    cFileMode = cFileStats.mode.to_s()
    puts "cFileMode Class: " + cFileMode.class.to_s()
    puts "length of string: " + cFileMode.length.to_s()
    printf("Mode: %o\n",  cFileMode)
    puts "User: " + cFileMode[3,1]
    puts "Group: " + cFileMode[4,1]
    puts "World: " + cFileMode[5,1]
  else
    puts "Could not find file: #{cFile}"    
  end
  puts
  puts
end

产生以下输出:

File Name: /Users/
/Users/ is a file
#<File::Stat dev=0xe000004, ino=48876, mode=040755, nlink=6, uid=0, gid=80, rdev=0x0, size=204, blksize=4096, blocks=0, atime=Sun Sep 04 12:20:09 -0400 2011, mtime=Thu Sep 01 21:29:08 -0400 2011, ctime=Thu Sep 01 21:29:08 -0400 2011>
cFileMode Class: String
length of string: 5
Mode: 40755
User: 7
Group: 7
World: 


File Name: /bin/bash
/bin/bash is a file
#<File::Stat dev=0xe000004, ino=8672, mode=0100555, nlink=1, uid=0, gid=0, rdev=0x0, size=1371648, blksize=4096, blocks=1272, atime=Sun Sep 04 16:24:09 -0400 2011, mtime=Mon Jul 11 14:05:45 -0400 2011, ctime=Mon Jul 11 14:05:45 -0400 2011>
cFileMode Class: String
length of string: 5
Mode: 100555
User: 3
Group: 3
World: 


File Name: Phantom.file
Could not find file: Phantom.file

Wh的字符串长度是否与预期不同? (用户应为5,/ bin / bash为6)?为什么子串没有正确的字符。我理解在引用5个字符的字符串时没有填充World,但偏移似乎关闭了,而在/ bin / bash 3的情况下甚至没有出现在字符串中。

由于

斯科特

2 个答案:

答案 0 :(得分:3)

这是一个不错的选择。

当数字前面带有0时,它表示为八进制。你实际上为bin / bash获得了什么:

0100755 to decimal = 33261
"33261".length = 5

对于/ Users:

040755 to decimal = 16877
"16877".length = 5

添加以下行:

puts cFileMode

你会看到错误。

to_s takes an argument which is the base。如果你调用to_s(8)那么它应该可以工作。

cFileMode = cFileStats.mode.to_s(8)

修改

files = ['/home/', '/bin/bash', 'filetest.rb']
files.each do |file|
  puts "File Name: #{file}"
  if File.exists?(file)
    puts "#{file} is a file"
    file_stats = File.stat(file)
    puts file_stats.inspect
    file_mode = file_stats.mode.to_s(8)
    puts "cFileMode Class: #{file_mode.class}"
    p file_mode
    puts "length of string: #{file_mode.length}"
    printf("Mode: #{file_mode}")
    puts "User: #{file_mode[-3,1]}"
    puts "Group: #{file_mode[-2,1]}"
    puts "World: #{file_mode[-1,1]}"
  else
    puts "Could not find file: #{file}"    
  end
  puts
  puts
end

答案 1 :(得分:1)

而不是:

puts "length of string: " + cFileMode.length.to_s()

你想要的是这个:

puts "length of string: #{cFile.length}"

请不要对Ruby中的变量使用驼峰大小写,仅在类名上使用驼峰大小写,方法和变量名称应使用下划线写入以分隔多个单词

避免在没有参数的方法调用中添加参数也是一种很好的做法,因此,您应该使用 to_s而不是调用 to_s()