I'm about to convert 50,000 lines of QB/PDS-code (spread over 500 files) into PB-code. Now I'm looking for a neat utility to help me through. I expect at least the following conversions to occur:
- replace . (period) in variable names to _ (underscore)
- prefixing name of constants with % or $ (number or string)
- substitute 'common shared' by 'global'
- differentiate variable names like x$ and x&
- substitute $include:'x' by #include "x"
- adding FUNCTION PBMAIN and END FUNCTION
- substitute USING "x";y by USING$("x",y)
Comment