ProgrammingThis forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have this text in a variable, and are using bash or a similar shell, you can do it without needing to use cut or sed - this will be more efficient as spawning a new process is much more expensive than manipulating strings inside the shell itself.
Code:
s="ABCD PQRS LMNO XYZW (2.3.17195)"
s=${s##*.}
echo "I have: ${s%)}"
will output:
Code:
I have: 17195
See the "Parameter Expansion" section of the bash manual page for an explanation and other, similar methods.
Last edited by matthewg42; 08-19-2008 at 04:21 AM.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.