mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
global-functions: introduce $CleanName
This commit is contained in:
parent
b548ffee59
commit
09988d9892
1 changed files with 19 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue