Giter VIP home page Giter VIP logo

xml2wocsv's People

Contributors

examin avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

xml2wocsv's Issues

funcrtion

package com.sport;/* package whatever; // don't place package name! */

import java.util.;
import java.lang.
;
import java.io.;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/
Name of the class has to be "Main" only if the class is public. */
class Ideone
{
public static void main (String[] args) throws java.lang.Exception
{ String regex = "(sum|coun|average)";
Scanner scn = new Scanner(System.in);
for(int i = 0; i< 4;i++){
String str=scn.nextLine();
Matcher matchAgg = Pattern.compile(regex, Pattern.MULTILINE).matcher(str);
while (matchAgg.find()) {
int startIndex = matchAgg.start();
int endIndex = matchAgg.end();
String agg = matchAgg.group(0);
String restStr = str.substring(endIndex);
String getWithThisOrgAgg = getAggString(str,restStr,startIndex,endIndex,agg);
str = getWithThisOrgAgg;
matchAgg = Pattern.compile(regex, Pattern.MULTILINE).matcher(str);
}
System.out.println(str);
}
}
private static HashMap<String,String> microMeasure= new HashMap<>();
private static int miroMapIndex = 0;
public static String getAggString(String org,String exp,int startIndex,int endIndex,String agg){
Stack stk = new Stack();
//System.out.println("Parenthesis Matching Test\n");
int len = exp.length();
int aggEndInd =0;
for (int i = 0; i < len; i++)
{
char ch = exp.charAt(i);
if (ch == '(')
stk.push(i);
else if (ch == ')')
{
try
{
stk.pop();
//System.out.println("')' at index "+(i+1)+" matched with ')' at index "+p);
}
catch(Exception e)
{
break;
}
}
if(stk.isEmpty()){
aggEndInd=i;
break;
}
}
String aggFull = exp.substring(0,aggEndInd+1);
if(microMeasure.getOrDefault(aggFull,"false").equals("false")){
microMeasure.put(aggFull,"MSR"+(miroMapIndex++));
}
// update org
String firstPart = org.substring(0,startIndex);
String secondPart =exp.substring(aggEndInd+1);
String orgTor = (firstPart+" "+agg.toUpperCase()+ " " +microMeasure.get(aggFull.trim())+" "+secondPart)
.replace(" "," ")
.replace(" "," ");
return orgTor;
}
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.