从txt文件中提取特定的数据

寻找跟踪我的扑克锦标赛结果。 我正在玩的扑克网站使用比赛数据保存.txt文件。 我想从.txt文件导入特定的数据。

这些文件是这样构build的:

PokerStars Tournament #910967412, No Limit Hold'em Buy-In: $200.00/$15.00 USD 1178 players Total Prize Pool: $235600.00 USD Tournament started 2014/06/01 22:30:00 CET [2014/06/01 16:30:00 ET] 1: 1_conor_b_1 (United Kingdom), still playing 2: 1dönertasche (Germany), still playing 3: 23noraB (Austria), still playing 4: 2noll6 (Sweden), still playing ...... You finished in 97th place (eliminated at hand #116994480258). 

我想提取这些数据:

  • 比赛号码(#)
  • 购买金额
  • 我的整理位置(例如:你在第97位完成)

这可能不使用VBA?

过程当然是将数据从新的txt文件保存到Excel表格中。

你可以使用正则expression式(正则expression式):

 tnumber: \#(\d*), buy in: In:(.*) USD Place: in (.*) place 

在这里输入图像说明