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










0















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!");










share|improve this question



















  • 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















0















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!");










share|improve this question



















  • 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













0












0








0








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!");










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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












  • 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







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












1 Answer
1






active

oldest

votes


















0














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("..."));





share|improve this answer

























  • 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











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
);



);













draft saved

draft discarded


















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









0














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("..."));





share|improve this answer

























  • 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
















0














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("..."));





share|improve this answer

























  • 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














0












0








0







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("..."));





share|improve this answer















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("..."));






share|improve this answer














share|improve this answer



share|improve this answer








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


















  • 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




















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page