@@ -14,12 +14,12 @@ SaveFileData writeFile seq[byte] overload
1414LoadFileText readFile
1515SaveFileText writeFile string overload
1616FileExists os.fileExists
17- FileRename os.moveFile Use moveFile for renaming
18- FileRemove os.removeFile Use removeFile to delete
19- FileCopy os.copyFile Use copyFile
20- FileMove os.moveFile Use moveFile
21- FileTextReplace strutils.replace Use replace from strutils
22- FileTextFindIndex strutils.find Use find from strutils
17+ FileRename os.moveFile
18+ FileRemove os.removeFile
19+ FileCopy os.copyFile
20+ FileMove os.moveFile
21+ FileTextReplace strutils.replace
22+ FileTextFindIndex strutils.find
2323DirectoryExists os.dirExists
2424IsFileExtension strutils.endsWith
2525GetFileExtension os.splitFile, os.searchExtPos
@@ -52,9 +52,9 @@ TextLength len
5252TextFormat strutils.format, strformat.`&`
5353TextSubtext substr
5454TextReplace strutils.replace, strutils.multiReplace
55- TextRemoveSpaces strutils.strip, strutils.multiReplace Use strip or multiReplace to remove spaces
56- GetTextBetween Manual implementation Need to write a custom function
57- TextReplaceBetween Manual implementation Need to write a custom function
55+ TextRemoveSpaces strutils.strip
56+ GetTextBetween None Write a function
57+ TextReplaceBetween None Write a function
5858TextInsert insert
5959TextJoin strutils.join
6060TextSplit strutils.split, unicode.split
@@ -101,7 +101,7 @@ DecodeDataBase64 base64.decode
101101ComputeCRC32 crunchy.crc32 External package
102102ComputeMD5 checksums.md5 External package
103103ComputeSHA1 checksums.sha1 External package
104- ComputeSHA256 checksums.sha256 External package
104+ ComputeSHA256 checksums.sha2 External package
105105================== ===================== ================
106106
107107Misc
0 commit comments