XML 发布商参数日期格式
XML Publisher Parameter Date Formatting
在 XML Publisher 模板中,如何将日期参数格式化为 DD-Mon-YYYY
格式?
<?param@begin: p_start_date?>
Start Date - <?xdofx:substr($p_start_date,1,4) || '-' || substr($p_start_date, 6,2) || '-' || substr($p_start_date, 9,2)?>
使用上面的格式,我的输出是2017-09-18
,预期的输出是
18-May-2017
我什至尝试过 <? xdofx:p_start_date('DD-Mon-YYYY’)?>
,但输出是
2017-09-18
您尝试过使用 to_date 功能吗?它记录在案 here.
在 XML Publisher 模板中,如何将日期参数格式化为 DD-Mon-YYYY
格式?
<?param@begin: p_start_date?>
Start Date - <?xdofx:substr($p_start_date,1,4) || '-' || substr($p_start_date, 6,2) || '-' || substr($p_start_date, 9,2)?>
使用上面的格式,我的输出是2017-09-18
,预期的输出是
18-May-2017
我什至尝试过 <? xdofx:p_start_date('DD-Mon-YYYY’)?>
,但输出是
2017-09-18
您尝试过使用 to_date 功能吗?它记录在案 here.