Result separation with regex2019 Community Moderator ElectionList of all special characters that need to be escaped in a regexA comprehensive regex for phone number validationHow to negate specific word in regex?RegEx match open tags except XHTML self-contained tagsJava RegEx with lookahead failingWhy is subtracting these two times (in 1927) giving a strange result?Getting regex dataJava - Parsing strings - String.split() versus Pattern & MatcherRegex pattern to convert comma separated StringC# .NET Regex matching too muchWhen use java regular-expression pattern.matcher(), source does not match regex.But, my hope result is ,source matches regex
How to explain that I do not want to visit a country due to personal safety concern?
How big is a MODIS 250m pixel in reality?
Should we release the security issues we found in our product as CVE or we can just update those on weekly release notes?
Employee lack of ownership
how to write formula in word in latex
How can I track script which gives me "command not found" right after the login?
(Calculus) Derivative Thinking Question
Time travel from stationary position?
Existence of subset with given Hausdorff dimension
Have researchers managed to "reverse time"? If so, what does that mean for physics?
A Cautionary Suggestion
Could the Saturn V actually have launched astronauts around Venus?
What exactly is this small puffer fish doing and how did it manage to accomplish such a feat?
SOQL: Populate a Literal List in WHERE IN Clause
Co-worker team leader wants to inject his friend's awful software into our development. What should I say to our common boss?
How to simplify this time periods definition interface?
How Could an Airship Be Repaired Mid-Flight
How can you use ICE tables to solve multiple coupled equilibria?
Hacking a Safe Lock after 3 tries
Is it true that good novels will automatically sell themselves on Amazon (and so on) and there is no need for one to waste time promoting?
What did Alexander Pope mean by "Expletives their feeble Aid do join"?
Interplanetary conflict, some disease destroys the ability to understand or appreciate music
How to deal with taxi scam when on vacation?
Can I use USB data pins as power source
Result separation with regex
2019 Community Moderator ElectionList of all special characters that need to be escaped in a regexA comprehensive regex for phone number validationHow to negate specific word in regex?RegEx match open tags except XHTML self-contained tagsJava RegEx with lookahead failingWhy is subtracting these two times (in 1927) giving a strange result?Getting regex dataJava - Parsing strings - String.split() versus Pattern & MatcherRegex pattern to convert comma separated StringC# .NET Regex matching too muchWhen use java regular-expression pattern.matcher(), source does not match regex.But, my hope result is ,source matches regex
I wrote a parser that reads a file line by line and parses it with a regex statement. (Regex below)
case "countries":
pattern = "\"(.+?)\"(\s+)?(\((.+?)\))?(\s+)?(\(.+?)\(\#(.+?)\)\)?(\s+)?(.+)";
substitution = "$1, $4, $7, $8, $10";
break;
This outputs a list with all the groups I want and each group separated by a comma. (through the result.split(",");)
Now lets say I don't want to use a comma but instead an | or an *. Changing the comma to any other string doesn't seem to change anything. What am I missing?
try (CSVWriter csvWriter = new CSVWriter(new FileWriter(myLocalPath + "CSV/" + choice.toLowerCase() + ".csv")))
Pattern r = Pattern.compile(pattern);
while (br.readLine() != null)
String nextLine = br.readLine();
Matcher matcher = r.matcher(nextLine);
String result = matcher.replaceAll(substitution);
String[] line = result.split("lorem");
csvWriter.writeNext(line, false);
catch(Exception e)
System.out.println(e);
System.out.println("Parsing done!");
java regex parsing
|
show 3 more comments
I wrote a parser that reads a file line by line and parses it with a regex statement. (Regex below)
case "countries":
pattern = "\"(.+?)\"(\s+)?(\((.+?)\))?(\s+)?(\(.+?)\(\#(.+?)\)\)?(\s+)?(.+)";
substitution = "$1, $4, $7, $8, $10";
break;
This outputs a list with all the groups I want and each group separated by a comma. (through the result.split(",");)
Now lets say I don't want to use a comma but instead an | or an *. Changing the comma to any other string doesn't seem to change anything. What am I missing?
try (CSVWriter csvWriter = new CSVWriter(new FileWriter(myLocalPath + "CSV/" + choice.toLowerCase() + ".csv")))
Pattern r = Pattern.compile(pattern);
while (br.readLine() != null)
String nextLine = br.readLine();
Matcher matcher = r.matcher(nextLine);
String result = matcher.replaceAll(substitution);
String[] line = result.split("lorem");
csvWriter.writeNext(line, false);
catch(Exception e)
System.out.println(e);
System.out.println("Parsing done!");
java regex parsing
1
Try escaping\|and\*because both are meta-characters in regex.
– Rahul
Jan 19 '18 at 13:01
Escaping the character didnt work (java should escape characters immediately regardless if it detects its regex right?)
– Marco Geertsma
Jan 19 '18 at 13:09
Does your input consistently have that pattern ? Your provided input aslorem. What exactly is your input ? Also check this answer.
– Rahul
Jan 19 '18 at 13:10
do you have an example?
– Maurice Perry
Jan 19 '18 at 13:13
regex101.com/r/Cv4tPE/1
– Marco Geertsma
Jan 19 '18 at 13:22
|
show 3 more comments
I wrote a parser that reads a file line by line and parses it with a regex statement. (Regex below)
case "countries":
pattern = "\"(.+?)\"(\s+)?(\((.+?)\))?(\s+)?(\(.+?)\(\#(.+?)\)\)?(\s+)?(.+)";
substitution = "$1, $4, $7, $8, $10";
break;
This outputs a list with all the groups I want and each group separated by a comma. (through the result.split(",");)
Now lets say I don't want to use a comma but instead an | or an *. Changing the comma to any other string doesn't seem to change anything. What am I missing?
try (CSVWriter csvWriter = new CSVWriter(new FileWriter(myLocalPath + "CSV/" + choice.toLowerCase() + ".csv")))
Pattern r = Pattern.compile(pattern);
while (br.readLine() != null)
String nextLine = br.readLine();
Matcher matcher = r.matcher(nextLine);
String result = matcher.replaceAll(substitution);
String[] line = result.split("lorem");
csvWriter.writeNext(line, false);
catch(Exception e)
System.out.println(e);
System.out.println("Parsing done!");
java regex parsing
I wrote a parser that reads a file line by line and parses it with a regex statement. (Regex below)
case "countries":
pattern = "\"(.+?)\"(\s+)?(\((.+?)\))?(\s+)?(\(.+?)\(\#(.+?)\)\)?(\s+)?(.+)";
substitution = "$1, $4, $7, $8, $10";
break;
This outputs a list with all the groups I want and each group separated by a comma. (through the result.split(",");)
Now lets say I don't want to use a comma but instead an | or an *. Changing the comma to any other string doesn't seem to change anything. What am I missing?
try (CSVWriter csvWriter = new CSVWriter(new FileWriter(myLocalPath + "CSV/" + choice.toLowerCase() + ".csv")))
Pattern r = Pattern.compile(pattern);
while (br.readLine() != null)
String nextLine = br.readLine();
Matcher matcher = r.matcher(nextLine);
String result = matcher.replaceAll(substitution);
String[] line = result.split("lorem");
csvWriter.writeNext(line, false);
catch(Exception e)
System.out.println(e);
System.out.println("Parsing done!");
java regex parsing
java regex parsing
edited Mar 7 at 14:03
Cœur
18.9k9110153
18.9k9110153
asked Jan 19 '18 at 13:00
Marco GeertsmaMarco Geertsma
4561523
4561523
1
Try escaping\|and\*because both are meta-characters in regex.
– Rahul
Jan 19 '18 at 13:01
Escaping the character didnt work (java should escape characters immediately regardless if it detects its regex right?)
– Marco Geertsma
Jan 19 '18 at 13:09
Does your input consistently have that pattern ? Your provided input aslorem. What exactly is your input ? Also check this answer.
– Rahul
Jan 19 '18 at 13:10
do you have an example?
– Maurice Perry
Jan 19 '18 at 13:13
regex101.com/r/Cv4tPE/1
– Marco Geertsma
Jan 19 '18 at 13:22
|
show 3 more comments
1
Try escaping\|and\*because both are meta-characters in regex.
– Rahul
Jan 19 '18 at 13:01
Escaping the character didnt work (java should escape characters immediately regardless if it detects its regex right?)
– Marco Geertsma
Jan 19 '18 at 13:09
Does your input consistently have that pattern ? Your provided input aslorem. What exactly is your input ? Also check this answer.
– Rahul
Jan 19 '18 at 13:10
do you have an example?
– Maurice Perry
Jan 19 '18 at 13:13
regex101.com/r/Cv4tPE/1
– Marco Geertsma
Jan 19 '18 at 13:22
1
1
Try escaping
\| and \* because both are meta-characters in regex.– Rahul
Jan 19 '18 at 13:01
Try escaping
\| and \* because both are meta-characters in regex.– Rahul
Jan 19 '18 at 13:01
Escaping the character didnt work (java should escape characters immediately regardless if it detects its regex right?)
– Marco Geertsma
Jan 19 '18 at 13:09
Escaping the character didnt work (java should escape characters immediately regardless if it detects its regex right?)
– Marco Geertsma
Jan 19 '18 at 13:09
Does your input consistently have that pattern ? Your provided input as
lorem. What exactly is your input ? Also check this answer.– Rahul
Jan 19 '18 at 13:10
Does your input consistently have that pattern ? Your provided input as
lorem. What exactly is your input ? Also check this answer.– Rahul
Jan 19 '18 at 13:10
do you have an example?
– Maurice Perry
Jan 19 '18 at 13:13
do you have an example?
– Maurice Perry
Jan 19 '18 at 13:13
regex101.com/r/Cv4tPE/1
– Marco Geertsma
Jan 19 '18 at 13:22
regex101.com/r/Cv4tPE/1
– Marco Geertsma
Jan 19 '18 at 13:22
|
show 3 more comments
1 Answer
1
active
oldest
votes
seems what you're missing is Pattern.quote, if argument must be read literally, indeed split argument is a regex.
String[] line = result.split(Pattern.quote("..."));
Cool, i didnt know about the Pattern.quote part. Really neat to know however i dont think this is usefull for my application since my regex statement already performed as it should. Im already getting the results i want and in the groups i want. I just want to change the comma that gets added between each seperator to any other character. Still gonna look more at Pattern.quote though!
– Marco Geertsma
Jan 19 '18 at 13:40
about the choice of separator, in a csv it is generally,or;however if this caracter can appear in a field it must be escaped, commonly within enclosing quotes, it may be changed in CSVWriter settings
– Nahuel Fouilleul
Jan 19 '18 at 13:44
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f48341732%2fresult-separation-with-regex%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
seems what you're missing is Pattern.quote, if argument must be read literally, indeed split argument is a regex.
String[] line = result.split(Pattern.quote("..."));
Cool, i didnt know about the Pattern.quote part. Really neat to know however i dont think this is usefull for my application since my regex statement already performed as it should. Im already getting the results i want and in the groups i want. I just want to change the comma that gets added between each seperator to any other character. Still gonna look more at Pattern.quote though!
– Marco Geertsma
Jan 19 '18 at 13:40
about the choice of separator, in a csv it is generally,or;however if this caracter can appear in a field it must be escaped, commonly within enclosing quotes, it may be changed in CSVWriter settings
– Nahuel Fouilleul
Jan 19 '18 at 13:44
add a comment |
seems what you're missing is Pattern.quote, if argument must be read literally, indeed split argument is a regex.
String[] line = result.split(Pattern.quote("..."));
Cool, i didnt know about the Pattern.quote part. Really neat to know however i dont think this is usefull for my application since my regex statement already performed as it should. Im already getting the results i want and in the groups i want. I just want to change the comma that gets added between each seperator to any other character. Still gonna look more at Pattern.quote though!
– Marco Geertsma
Jan 19 '18 at 13:40
about the choice of separator, in a csv it is generally,or;however if this caracter can appear in a field it must be escaped, commonly within enclosing quotes, it may be changed in CSVWriter settings
– Nahuel Fouilleul
Jan 19 '18 at 13:44
add a comment |
seems what you're missing is Pattern.quote, if argument must be read literally, indeed split argument is a regex.
String[] line = result.split(Pattern.quote("..."));
seems what you're missing is Pattern.quote, if argument must be read literally, indeed split argument is a regex.
String[] line = result.split(Pattern.quote("..."));
edited Jan 19 '18 at 13:32
Valentin Michalak
1,222723
1,222723
answered Jan 19 '18 at 13:29
Nahuel FouilleulNahuel Fouilleul
14.5k11626
14.5k11626
Cool, i didnt know about the Pattern.quote part. Really neat to know however i dont think this is usefull for my application since my regex statement already performed as it should. Im already getting the results i want and in the groups i want. I just want to change the comma that gets added between each seperator to any other character. Still gonna look more at Pattern.quote though!
– Marco Geertsma
Jan 19 '18 at 13:40
about the choice of separator, in a csv it is generally,or;however if this caracter can appear in a field it must be escaped, commonly within enclosing quotes, it may be changed in CSVWriter settings
– Nahuel Fouilleul
Jan 19 '18 at 13:44
add a comment |
Cool, i didnt know about the Pattern.quote part. Really neat to know however i dont think this is usefull for my application since my regex statement already performed as it should. Im already getting the results i want and in the groups i want. I just want to change the comma that gets added between each seperator to any other character. Still gonna look more at Pattern.quote though!
– Marco Geertsma
Jan 19 '18 at 13:40
about the choice of separator, in a csv it is generally,or;however if this caracter can appear in a field it must be escaped, commonly within enclosing quotes, it may be changed in CSVWriter settings
– Nahuel Fouilleul
Jan 19 '18 at 13:44
Cool, i didnt know about the Pattern.quote part. Really neat to know however i dont think this is usefull for my application since my regex statement already performed as it should. Im already getting the results i want and in the groups i want. I just want to change the comma that gets added between each seperator to any other character. Still gonna look more at Pattern.quote though!
– Marco Geertsma
Jan 19 '18 at 13:40
Cool, i didnt know about the Pattern.quote part. Really neat to know however i dont think this is usefull for my application since my regex statement already performed as it should. Im already getting the results i want and in the groups i want. I just want to change the comma that gets added between each seperator to any other character. Still gonna look more at Pattern.quote though!
– Marco Geertsma
Jan 19 '18 at 13:40
about the choice of separator, in a csv it is generally
, or ; however if this caracter can appear in a field it must be escaped, commonly within enclosing quotes, it may be changed in CSVWriter settings– Nahuel Fouilleul
Jan 19 '18 at 13:44
about the choice of separator, in a csv it is generally
, or ; however if this caracter can appear in a field it must be escaped, commonly within enclosing quotes, it may be changed in CSVWriter settings– Nahuel Fouilleul
Jan 19 '18 at 13:44
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f48341732%2fresult-separation-with-regex%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Try escaping
\|and\*because both are meta-characters in regex.– Rahul
Jan 19 '18 at 13:01
Escaping the character didnt work (java should escape characters immediately regardless if it detects its regex right?)
– Marco Geertsma
Jan 19 '18 at 13:09
Does your input consistently have that pattern ? Your provided input as
lorem. What exactly is your input ? Also check this answer.– Rahul
Jan 19 '18 at 13:10
do you have an example?
– Maurice Perry
Jan 19 '18 at 13:13
regex101.com/r/Cv4tPE/1
– Marco Geertsma
Jan 19 '18 at 13:22