In Clipper 5.1, FoxPro, VFP, ..., the result is adjusts to length of entry data 
for types character.
This does more easy the application of a accountant mask, for example .-

Local cAccount := "12345"

? '[' + Transform( cAccount, '@R 999.99.99.9999' ) + ']'  // [123.45]

In Clipper 5.2 y Harbour it's adjusts to length of mask, "PICTURE".

? '[' + Transform( cAccount, '@R 999.99.99.9999' ) + ']'  // [123.45.  .    ]

Would it be possible to find a solution compatible style @L?

Thanks in advance
Xavi

_______________________________________________
Harbour mailing list
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to