Is there a function to format a text in Oracle WebForms like printf in PHP?
A:
No, you just have to format the text yourself e.g.
text := 'Employee ' || to_char(:blk.empno) || ' earns $'
|| to_char(:blk.sal,'999999.99');
Tony Andrews
2010-05-12 10:10:50