我有一个SQL查询 与下一部分...
Branch=Chennai和$ACCOUNT_NO=12312321
在此我想用我定义的PL/SQL函数替换$, 我需要输出
BRANCH=Chennai和解码_acc_no(ACCOUNT_NO)=12312321
要获取所需的输出, 需要用什么正则表达式??...
我有一个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
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 ...
Check this, List<String> list = new ArrayList<String>(); for (int i = 0; i < 10000; i++) { String value = (""+UUID.randomUUID().getLeastSignificantBits()).substring(3, ...
I am in the middle of solving a problem where I think it s best suited for a decorator and a state pattern. The high level setting is something like a sandwich maker and dispenser, where I have a set ...
I have been trying to execute a MS SQL Server stored procedure via JDBC today and have been unsuccessful thus far. The stored procedure has 1 input and 1 output parameter. With every combination I ...
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 ...
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 ...
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....
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 ...