In addition to Chris's good advice to use a function, Don't parse ls
Use stat to get statistics about files:
lsfc() {
ls -lq -- "$@"
printf 'File count: %d\n' "$(stat -c '%F' "$@" | grep -cF 'regular file')"
}
GNU stat understands the -c option. Check your stat man page.
... Although, depending on your positional parameters, ls and stat may interpret "$@" differently.