加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > Linux > 正文

linux – 如何遍历Bash中的所有ASCII字符?

发布时间:2020-12-13 19:26:21 所属栏目:Linux 来源:网络整理
导读:我知道如何迭代字母表: for c in {a..z}; do ...; done 但我无法弄清楚如何遍历所有ASCII字符.有谁知道怎么样? 解决方法 你可以做的是从0迭代到127然后将十进制值转换为它的ASCII值(或返回). 您可以使用these函数执行此操作: # POSIX# chr() - converts d
我知道如何迭代字母表:
for c in {a..z}; do ...; done

但我无法弄清楚如何遍历所有ASCII字符.有谁知道怎么样?

解决方法

你可以做的是从0迭代到127然后将十进制值转换为它的ASCII值(或返回).

您可以使用these函数执行此操作:

# 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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读