Questions tagged [mt940]

MT940 is a format used by the SWIFT network to represent account statement data. Use the tag [swift-mt] for more general questions about SWIFT messaging standards.

Customer statement message. This message is used to transmit detailed information about all entries booked to an account, serviced by a financial institution. Sent only once a day. Most electronic banking systems are able to sent and receive MT940 to exchange statement information.

19 questions
0
votes
1 answer

How to parse mt940 file by using regex or Raptorious.SharpMt940Lib?

how can I parse a mt940 file without error by using regex or Raptorious.SharpMt940Lib? below codes returned to me error : var header = new Raptorious.SharpMt940Lib.Mt940Format.Separator("STARTUMSE"); var trailer = new…
Penguen
  • 16,836
  • 42
  • 130
  • 205
0
votes
2 answers

How to use mt940 gem file

Hi I have installed mt940 gem file and trying to access its methods as follows require 'mt940' #require 'mt940_parser' class HomePageController < ApplicationController def aboutus #read all the files Dir.foreach(directory_path) do…
not 0x12
  • 19,360
  • 22
  • 67
  • 133
0
votes
2 answers

get values from multidimensional array with objects

I've used a little script for importing mt940 files (file of dutch bank transactions). This is the array I get back but I need a little bit help to get the right values out of the array. Array ( [0] => Statement_banking Object ( …
Leon van der Veen
  • 1,652
  • 11
  • 42
  • 60
0
votes
1 answer

Regular Expression how to print one of two in matching pattern

I have a problem with Regular Expressions. I'm writing a small program that matches a line from mt940 bank statement file. I have a simple string like this one: :60F:C120613PLN245265,82 And a regular…
1
2