PowerShell と CSV とコピー&ペースト

???[PowerShell] CSV ?? XML ????+???????????????????????????PowerShell 1.0 ???????????????????????????????????????????????????

????????????????????????????????????????????????????????????

????????? CSV ?????????Import-CSV ????????????

PS> $csv

??? ?? ??
------ ---- -----
??? 1000 ?
??? 500 ?
??? 100 ?
?? 20 ?
??? 3 ?

????????????????????????????????????

PS> $csv[0]."???"
???
PS> $csv[0]."??"
1000
PS> $csv[0]."??"
PS>

???????????????(???)?????????????????????????????????????????????????????????????

PS> $csv[0] | Get-Member

   TypeName: System.Management.Automation.PSCustomObject

Name MemberType Definition
---- ---------- ----------
Equals Method bool Equals(System.Object obj)
GetHashCode Method int GetHashCode()
GetType Method type GetType()
ToString Method string ToString()
?? NoteProperty System.String ?? =?
??? NoteProperty System.String ???=???
?? NoteProperty System.String ??=1000

?????????????=?????????????????????????????(??)???????????????????????????

PS> $csv[0]."?? "
?

????????????? Web ?????????????&??????????????????????????????????????????????????????????????????????????????????

  • ??????????????????????????????????????????
  • ?? Get-Member ?????????
  • $csv ????????????(??)??????????????----- ?4??????5??????????????

????????????????????????????????????????????????