Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一个正则表达式,它将转换任何金额值,如123/123.34/12345.99将转换为逗号分隔值,如123/123.34/12,345.99. 我将在 oracle 中使用这个正则表达式。
123/123.34/12345.99
123/123.34/12,345.99
我不想使用 TO_CHAR 函数。我需要一个正则表达式。
请考虑使用 to_char 及其各种功能。
SELECT TO_CHAR(-10000,'L99G999D99MI') "Amount" from dual