mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2024-05-11 05:55:19 +00:00
global-functions: introduce $CleanName
This commit is contained in:
@ -27,6 +27,7 @@
|
||||
:global CharacterMultiply;
|
||||
:global CharacterReplace;
|
||||
:global CleanFilePath;
|
||||
:global CleanName;
|
||||
:global DeviceInfo;
|
||||
:global Dos2Unix;
|
||||
:global DownloadPackage;
|
||||
@ -222,6 +223,24 @@
|
||||
:return $Path;
|
||||
}
|
||||
|
||||
# clean name for DNS, file and more
|
||||
:set CleanName do={
|
||||
:local Input [ :tostr $1 ];
|
||||
|
||||
:local Return "";
|
||||
|
||||
:for I from=0 to=([ :len $Input ] - 1) do={
|
||||
:local Char [ :pick $Input $I ];
|
||||
:if ([ :typeof [ find "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-" $Char ] ] = "nil") do={
|
||||
:set Char "-";
|
||||
}
|
||||
:if ($Char != "-" || [ :pick $Return ([ :len $Return ] - 1) ] != "-") do={
|
||||
:set Return ($Return . $Char);
|
||||
}
|
||||
}
|
||||
:return $Return;
|
||||
}
|
||||
|
||||
# get readable device info
|
||||
:set DeviceInfo do={
|
||||
:global ExpectedConfigVersion;
|
||||
|
Reference in New Issue
Block a user