On Sunday 17 August 2008 15:58:36 Michael Garrison Stuber wrote: > It appears that the latest version of the kmm-banking-plugin (0.9.8) has > a the ability to use regular expressions to determine what from the > payee field and what from the memo field goes where. (see > mymoneybanking.cpp line 585) > > Has anybody used this feature?
Yes, because I needed it I wrote it and made it available to the public :) One of my banks places the payee as the first 27 characters of the memo field. So I needed a feature to separate the two. I do this with the following two regex: Payee: (.{27}) Memo: .{27}(.*) The part in parens is the part extracted from the memo field. A dot means any character and the number in braces is just the number of repetitions. More details about QRegExps can be found here: http://doc.trolltech.com/3.3/qregexp.html#details > Can I get some guidance on how to > configure it? The UI doesn't seem to have anything for it. > I'm > guessing that I can shove stuff into .aqbanking/settings.conf, but I'm > not certain where in the file, or exactly how I should be structuring my > regular expression to get the right results. Not in .aqbanking, because it is a KMyMoney feature that stores its information with your account inside the KMyMoney file. > Any advice? Hope the above gets you started. -- Regards Thomas Baumgart GPG-FP: E55E D592 F45F 116B 8429 4F99 9C59 DB40 B75D D3BA ------------------------------------------------------------- 90 percent of all errors are sitting 60 cm in front of the display. -------------------------------------------------------------
signature.asc
Description: This is a digitally signed message part.
------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________ Aqbanking-devel mailing list Aqbanking-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/aqbanking-devel