[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[问题求助] [已解决]Linux命令截取字符串末尾的数字

本帖最后由 newswan 于 2021-1-29 23:27 编辑
  1. echo aa0| sed -r -e "s/.*([0-9]+)/\1/"
复制代码
但是,如果字符串末尾没数字,结果就出错
  1. echo aa| sed -r -e "s/.*([0-9]+)/\1/"
复制代码
请问,怎么解决

回复 1# newswan


  加个$试试。

TOP

解决
  1. grep -Eo "[0-9]+$"
复制代码

TOP

回复 1# newswan
  1. echo aa0|sed -r "/[0-9]$/!d;s/.*([0-9]+)/\1/"
  2. echo aa|sed -r "/[0-9]$/!d;s/.*([0-9]+)/\1/"
复制代码
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

本帖最后由 qixiaobin0715 于 2021-1-30 07:38 编辑

回复 1# newswan
sed没用过,正则倒是接触过,说的不一定对:将.*[0-9]+改为[0-9]*试试
echo aa| sed -r -e "s/[0-9]*//"

TOP

e是表示end吗

TOP

Usage: sed [OPTION]... {script-only-if-no-other-script} [input-file]...

  -n, --quiet, --silent
                 suppress automatic printing of pattern space
      --debug
                 annotate program execution
  -e script, --expression=script
                 add the script to the commands to be executed
  -f script-file, --file=script-file
                 add the contents of script-file to the commands to be executed
  --follow-symlinks
                 follow symlinks when processing in place
  -i[SUFFIX], --in-place[=SUFFIX]
                 edit files in place (makes backup if SUFFIX supplied)
  -b, --binary
                 open files in binary mode (CR+LFs are not processed specially)
  -l N, --line-length=N
                 specify the desired line-wrap length for the `l' command
  --posix
                 disable all GNU extensions.
  -E, -r, --regexp-extended
                 use extended regular expressions in the script
                 (for portability use POSIX -E).
  -s, --separate
                 consider files as separate rather than as a single,
                 continuous long stream.
      --sandbox
                 operate in sandbox mode (disable e/r/w commands).
  -u, --unbuffered
                 load minimal amounts of data from the input files and flush
                 the output buffers more often
  -z, --null-data
                 separate lines by NUL characters
      --help     display this help and exit
      --version  output version information and exit

If no -e, --expression, -f, or --file option is given, then the first
non-option argument is taken as the sed script to interpret.  All
remaining arguments are names of input files; if no input files are
specified, then the standard input is read.

GNU sed home page: <https://www.gnu.org/software/sed/>.
General help using GNU software: <https://www.gnu.org/gethelp/>.

TOP

返回列表