Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    /**
     * Convert to LF
     * @param text
     * @return
     */
    public static String convertToLf(String text) {
        String repCrlf = text.replaceAll("\r\n", "\n");
        String repLf = repCrlf.replaceAll("\r", "\n");
        return repLf;
    }
}