Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は文字列を持っています:
abc = "2342"
または:任意の文字列="任意の数"
戻り値2342(または任意の数)が欲しい
どうすればよいですか(SEDを使用するのが最適です)
sed 's/^[^=]*= *"\([^"]*\)"$/\1/'
また
sed -E 's/^[^=]*= *"([^"]*)"$/\1/'
仮定: