awk delimiter semi-colon
Just use function split in awk command to split a line into an array 'a'
using a choosen string as delimiter as for example ", " in next use case:
echo "hi; bye; hey" | awk '{split($0,a,"; "); print a[3],a[2],a[1]}'
awk delimiter semi-colon
Just use function split in awk command to split a line into an array 'a'
using a choosen string as delimiter as for example ", " in next use case:
echo "hi; bye; hey" | awk '{split($0,a,"; "); print a[3],a[2],a[1]}'
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us