Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[blue]master #[/blue] name='report_name.xml.12345'
[blue]master #[/blue] echo "${name%.*}"
report_name.xml
[blue]master #[/blue] name='report_name.xml.12345'
[blue]master #[/blue] echo "${name%.+([0-9])}"
report_name.xml
See the [tt]man ksh[/tt] :FlorianAwk said:Is there somewhere any documentation about this powerfull syntax?