Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import static java.lang.String.format;

public class Main {
    public static String textStartsWith(String text) {
        return format("starts-with(%s, '%s')", translateTextForPath("text()"), text.toLowerCase());
    }

    public static String translateTextForPath(String txt) {
        return format("translate(%s, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz')", txt);
    }
}