Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all, I am using Implicit tContextLoad.
However I received the following error:
Exception in component Implicit_Context_Regex
java.util.regex.PatternSyntaxException: Unclosed character class near index 11
^([^]*)(.*)$
^
at java.util.regex.Pattern.error(Unknown Source)
at java.util.regex.Pattern.clazz(Unknown Source)
at java.util.regex.Pattern.sequence(Unknown Source)
at java.util.regex.Pattern.expr(Unknown Source)
at java.util.regex.Pattern.group0(Unknown Source)
at java.util.regex.Pattern.sequence(Unknown Source)
at java.util.regex.Pattern.expr(Unknown Source)
at java.util.regex.Pattern.compile(Unknown Source)
at java.util.regex.Pattern.<init>(Unknown Source)
at java.util.regex.Pattern.compile(Unknown Source)
at test.demo_0_1.demo.Implicit_Context_RegexProcess(demo.java:674)
at test.demo_0_1.demo.runJobInTOS(demo.java:7387)
at test.demo_0_1.demo.main(demo.java:7193)
The implicit tContextLoad is from txt file where it consists the following:
"host""localhost"
"database""student"
"username""postgres"
"password""hello"
"port""5432"
I have set the Field Seperator as "". What have I done wrong? Please help.
Talenduseruser wrote:
Hi. Would like to clarify. Do you mean if I put the separator as ;
I can edit the txt file as follow:
host;localhost;
database;student;
username;postgres;
password;hello;
port;5432;