a= <<EOF
Password
:
7UV1ceFQ (You will be asked to change this after logging in for the first time)
EOF
我需要使用正则表达式提取值“7UV1ceFQ”,我尝试使用'/ Password:7UV1ceFQ /但它不起作用,我认为这是因为包含了下一行字符,任何人都可以建议我确切地说这个值?
答案 0 :(得分:0)
▶ a[/^\S+(?=\s\(You will be)/]
#⇒ "7UV1ceFQ"
上面的正则表达式如下:
^
\S+
(?=\s\(You will be)