确保int变量长度为2位,否则在前面添加0使其长度为2位

发布于 2024-08-14 13:02:48 字数 350 浏览 3 评论 0原文

如何检查 int 变量 ($inputNo) 以查看其长度是否为 2 位或更多十进制数字?

示例:

inputNo="5"

应该更改为: 05

inputNo="102"

应该保留: 102

我考虑过使用 wcif 语句,但是 wc -m 没有t 似乎给出了传递到 wc 的实际字符,因为 wc 似乎总是给给定的字符+1。

但我不知道如何在当前输入的数字前面添加0。

How do I check a int variable ($inputNo) to see if it’s 2 or more decimal digits long?

Example:

inputNo="5"

Should be changed to: 05

inputNo="102"

Should be left alone: 102

I thought about using wc and if statements, but wc -m doesn’t seems to give the actual characters passed into wc, as wc always seems to give +1 to the characters that is given.

But I don’t know how to add a 0 in front of the current input number.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

杀手六號 2024-08-21 13:02:48

您可以使用 bash 内置的 printf-v 选项将其写入变量,而不是将其打印到标准输出:

pax> inputNo=5   ; printf -v inputNo "%02d" $inputNo ; echo $inputNo
05
pax> inputNo=102 ; printf -v inputNo "%02d" $inputNo ; echo $inputNo
102

您需要确保它是数字首先,否则转换将失败。如果您希望能够将任何字符串填充为两个或更多字符,您还可以使用:

while [[ ${#inputNo} -lt 2 ]] ; do
    inputNo="0${inputNo}"
done

这基本上是一个while循环,在字符串前面加上“0”前缀直到长度大于或等于2。

请注意,这也可以在 bash 中完成,方法是在数字前加上两个零,然后简单地获取该字符串的最后两个字符,首先检查它是否至少还没有达到所需的大小:

if [[ ${#inputNo} -lt 2 ]] ; then
    inputNo="00${inputNo}"
    inputNo="${inputNo: -2}"
fi

区别可能是对于两位数来说不是太大,但如果您需要更大的宽度,您可能会发现后一种解决方案更好。


如果您使用的 shell 不是 bash(不太可能,根据您的标签),您需要找到等效项,或者恢复使用外部进程来执行工作,类似于:

while [[ $(echo -n ${inputNo} | wc -c) -lt 2 ]] ; do
    inputNo="0${inputNo}"
done

这基本上完成了您在问题中的想法,但请注意在 echo 命令中使用 -n 来防止尾随换行符(这是几乎肯定会导致您的差一错误)。

但是,如前所述,这是一个后备位置。如果您使用的是 bash,我之前的建议可能是最好的。

You can use the bash-builtin printf with the -v option to write it to a variable rather than print it to standard output:

pax> inputNo=5   ; printf -v inputNo "%02d" $inputNo ; echo $inputNo
05
pax> inputNo=102 ; printf -v inputNo "%02d" $inputNo ; echo $inputNo
102

You'll want to make sure it's numeric first otherwise the conversion will fail. If you want to be able to pad any string out to two or more characters, you can also use:

while [[ ${#inputNo} -lt 2 ]] ; do
    inputNo="0${inputNo}"
done

which is basically a while loop that prefixes your string with "0" until the length is greater than or equal to two.

Note that this can also be done in bash by prefixing the number with two zeroes then simply getting the last two characters of that string, checking first that it's not already at least the desired size:

if [[ ${#inputNo} -lt 2 ]] ; then
    inputNo="00${inputNo}"
    inputNo="${inputNo: -2}"
fi

The difference is probably not too great for a two-digit number but you may find the latter solution is better if you need larger widths.


If you're using a shell other than bash (unlikely, based on your tags), you'll need to find the equivalents, or revert to using external processes to do the work, something like:

while [[ $(echo -n ${inputNo} | wc -c) -lt 2 ]] ; do
    inputNo="0${inputNo}"
done

This does basically what you were thinking off in your question but note the use of -n in the echo command to prevent the trailing newline (which was almost certainly causing your off-by-one error).

But, as stated, this is a fall-back position. If you're using bash, the earlier suggestions of mine are probably best.

度的依靠╰つ 2024-08-21 13:02:48

用于通用填充,无论字符串是否为数字

无需将 echo 管道传输到 wc 或使用 while > 循环。

在 Bash 中,您可以像这样获取字符串的长度:${#inputNo}

既然你可以做子字符串,你可以这样做:

if [[ ${#input} < 2 ]] 
then
    inputNo="00${inputNo}"
    inputNo="${inputNo: -2}"
fi

For general-purpose padding whether the string is numeric or not

No need for piping echo into wc or using a while loop.

In Bash, you can get the length of a string like this: ${#inputNo}.

And since you can do substrings, you can do this instead:

if [[ ${#input} < 2 ]] 
then
    inputNo="00${inputNo}"
    inputNo="${inputNo: -2}"
fi
筱武穆 2024-08-21 13:02:48

您可以使用 http://bash-hackers.org/wiki/doku .php/commands/builtin/printf,其中的示例:

the_mac="0:13:ce:7:7a:ad"

# lowercase hex digits
the_mac="$(printf "%02x:%02x:%02x:%02x:%02x:%02x" 0x${the_mac//:/ 0x})"

# or the uppercase-digits variant
the_mac="$(printf "%02X:%02X:%02X:%02X:%02X:%02X" 0x${the_mac//:/ 0x})"

You can use http://bash-hackers.org/wiki/doku.php/commands/builtin/printf, an example from there:

the_mac="0:13:ce:7:7a:ad"

# lowercase hex digits
the_mac="$(printf "%02x:%02x:%02x:%02x:%02x:%02x" 0x${the_mac//:/ 0x})"

# or the uppercase-digits variant
the_mac="$(printf "%02X:%02X:%02X:%02X:%02X:%02X" 0x${the_mac//:/ 0x})"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文