本文整理汇总了Python中Direct.ReductionHelpers.parse_run_file_name方法的典型用法代码示例。如果您正苦于以下问题:Python ReductionHelpers.parse_run_file_name方法的具体用法?Python ReductionHelpers.parse_run_file_name怎么用?Python ReductionHelpers.parse_run_file_name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Direct.ReductionHelpers
的用法示例。
在下文中一共展示了ReductionHelpers.parse_run_file_name方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_split_file_name
# 需要导入模块: from Direct import ReductionHelpers [as 别名]
# 或者: from Direct.ReductionHelpers import parse_run_file_name [as 别名]
def test_split_file_name(self):
fpath,nums,fext = helpers.parse_run_file_name('MER10100.nxs')
self.assertEqual(fpath,'')
self.assertEqual(nums,10100)
self.assertEqual(fext,'.nxs')
fpath,nums,fext = helpers.parse_run_file_name('c:/somepath/MER1011,MER10100.nxs')
self.assertEqual(len(nums),2)
self.assertEqual(nums[0],1011)
self.assertEqual(nums[1],10100)
self.assertEqual(fpath[0],'c:/somepath')
self.assertEqual(fpath[1],'')
fpath,nums,fext = helpers.parse_run_file_name('c:/somepath/MER1011:MER1014.nxs,1046')
self.assertEqual(len(nums),5)