- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for removeExtension (0.06 sec)
-
src/main/java/org/codelibs/core/io/ResourceUtil.java
* Removes the extension from the path. * * @param path * The path. Must not be {@literal null}. * @return The path without the extension. */ public static String removeExtension(final String path) { assertArgumentNotNull("path", path); final int extPos = path.lastIndexOf("."); if (extPos >= 0) { return path.substring(0, extPos); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 14.7K bytes - Viewed (0)