Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
// Licensed under the Apache License, Version 2.0 (the "License");

public class Main {
    /** @since 5.3.0 */
    public static String toFileSuffix(String fileName) {
        int dotx = fileName.lastIndexOf('.');

        return dotx < 0 ? "" : fileName.substring(dotx + 1);
    }
}