readme update

This commit is contained in:
2026-04-30 10:35:42 -04:00
parent bab73d1d83
commit 33f04eb9cd
6 changed files with 13 additions and 4 deletions

View File

@ -174,6 +174,10 @@ amsarray<amsstring> splitwhitespace(const amsstring &s);
amsstring stripwhitespace(const amsstring &s);
amsstring stripallwhitespace(const amsstring &s);
//splits a string into contiguous sets of alphanumeric characters ignoring non-alphanums
amsarray<amsstring> splitalphanum(const amsstring &s); //
//splits into two guaranteed pieces
//if an extension separator . is not encountered, the first piece will contain the entire string, the second ""
amsarray<amsstring> splitext(const amsstring &s);