Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static String getSubClientId(String fullClientId, String posId) {
        int pos = fullClientId.lastIndexOf(posId);
        return fullClientId.substring(0, pos) + posId;
    }
}