我有一堆行,我想分成两列,并从每一列中获取数据。数据看起来像这样:
current_well.well_number
current_well.well_name
current_well.well_type_code
well_location.section
well_location.range
本质上,我想做的是根据期间拆分行,将数据转换为两列,然后获取每列的数据。我知道这可以在 Excel 中完成,但我对解决这个问题的 VI 解决方案非常感兴趣。我知道
%s/\./
将用空格格式化字符串。但是一旦我的数据看起来像:
current_well well_number
current_well well_name
current_well well_type_code
well_location section
well_location range
如何获取每列的所有值,以便将其粘贴到另一个应用程序中?