如何遍历Bash中的所有ASCII字符? [英] How to iterate through all ASCII characters in Bash?

查看:111
本文介绍了如何遍历Bash中的所有ASCII字符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道如何遍历字母:

for c in {a..z}; do ...; done

但是我不知道如何遍历所有ASCII字符.有人知道吗?

But I can't figure out how to iterate through all ASCII characters. Does anyone know how?

推荐答案

您可以做的是从0迭代到127,然后将十进制值转换为其ASCII值(或反过来).

What you can do is to iterate from 0 to 127 and then convert the decimal value to its ASCII value(or back).

您可以使用这些函数来做到这一点:

You can use these functions to do it:

# POSIX
# chr() - converts decimal value to its ASCII character representation
# ord() - converts ASCII character to its decimal value

chr() {
  [ ${1} -lt 256 ] || return 1
  printf \\$(printf '%03o' $1)
}

# Another version doing the octal conversion with arithmetic
# faster as it avoids a subshell
chr () {
  [ ${1} -lt 256 ] || return 1
  printf \\$(($1/64*100+$1%64/8*10+$1%8))
}

# Another version using a temporary variable to avoid subshell.
# This one requires bash 3.1.
chr() {
  local tmp
  [ ${1} -lt 256 ] || return 1
  printf -v tmp '%03o' "$1"
  printf \\"$tmp"
}

ord() {
  LC_CTYPE=C printf '%d' "'$1"
}

# hex() - converts ASCII character to a hexadecimal value
# unhex() - converts a hexadecimal value to an ASCII character

hex() {
   LC_CTYPE=C printf '%x' "'$1"
}

unhex() {
   printf \\x"$1"
}

# examples:

chr $(ord A)    # -> A
ord $(chr 65)   # -> 65

这篇关于如何遍历Bash中的所有ASCII字符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆