Assign to ext the fragment of the string f after the last dot character, or the empty string if f does not contain a dot.E.g. "photo.jpg" -> "jpg"ext must not contain the dot character.
import "path/filepath" import "strings"
ext := strings.TrimPrefix(filepath.Ext(f), ".")
int i = f.lastIndexOf('.'); String ext = i != -1 ? f.substring(++i) : "";
sysutils
ext := ExtractFileExt(f); if (ext <> '') then system.delete(ext,1,1);
import os
ext = os.path.splitext(f)[1][1:]
ext = File.extname(f).delete_prefix(".")
No security, no password. Other people might choose the same nickname.