English 中文(简体)
用 Java 中使用正则表达式的函数替换为$
原标题:Replace $ with a Function using Regular Expression in Java

我有一个SQL查询 与下一部分...

Branch=Chennai和$ACCOUNT_NO=12312321

在此我想用我定义的PL/SQL函数替换$, 我需要输出

BRANCH=Chennai和解码_acc_no(ACCOUNT_NO)=12312321

要获取所需的输出, 需要用什么正则表达式??...

最佳回答

类似这样的东西应该有用:

String str = "Branch=Chennai和$ACCOUNT_NO=12312321";
String newStr = str.replaceAll("^(.+?)\$([A-Z_]+)(.*)$", "$1decode_acc_no($2)$3");
System.out.println(str);
System.out.println(newStr);

打印 :

Branch=Chennai和$ACCOUNT_NO=12312321

BRANCH=Chennai和解码_acc_no(ACCOUNT_NO)=12312321

EDIT: 根据您的评论, 否, 这将只匹配您在问题中给出的结构 。 如果您想要更大的灵活性, 您可以使用它 :

String str = "Branch=Chennai和$ACCOUNT_NO=12312321 OR $BENIFICIARY_ACC_NO= 2323434 "
String newStr = str.replaceAll("\$([A-Z_]+)", "decode_acc_no($1)");
System.out.println(newStr);

打印以下内容:

BRANCH=Chennai和解码_acc_no(ACCOUNT_NO)=12312321 OR decode_acc_no(BENIFICIARY_ACC_NO)= 2323434

问题回答

使用此选项 :

query.replace("\$([A-Za-z0-9_]*)", "decode_acc_no($1)");

快速黑客

String original = "BRANCH= Chennai AND $ACCOUNT_NO= 12312321 "; System.out.println(original.replace(" AND $ACCOUNT_NO", " AND decode_acc_no(ACCOUNT_NO)"));

您也可以使用 regex s/$ ([A-Za-z_] *)/decode_acc_no(1)/g

String in = "BRANCH= Chennai  AND $ACCOUNT_NO= 12312321 ";
String result = in.replaceAll("\$([^=]+)", "decode_acc_no($1)");

<强>产出:

BRANCH=Chennai和解码_acc_no(ACCOUNT_NO)=12312321

regex 搜索 $ 字符, 并匹配所有不是 的字符。 它存储在第一个捕捉组中。 该捕捉组的内容通过使用 1 重新在替换字符串中重新使用 。

What absolutely every Programmer should know about regular expressions
Disclaimer: My own blog post





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...