[root@24ds22 haproxy]# echo 'ini adalah contoh' | awk '{print $2}'
adalah
[root@24ds22 haproxy]# echo 'ini-adalah-contoh' | awk -F'-' '{print $2}'
adalah
===== CUT split string =====
[root@24ds22 haproxy]# echo 'ini-adalah-contoh' | cut -d'-' -f2
adalah
Selamat mencoba