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.
tr -d '[:lower:]' < input_file
sed -e "s/[a-z]\{2,\}//g"
$ sed -e 's/\b\w*[a-z]\w*\b//g' <<EOF
> This is My Address
> 123 FAKE STREET
> MYTOWN, MYSTATE 55555
> More junk here
> and here
> Junk Junk Junk CAPITAL Junk Junk
> EOF
123 FAKE STREET
MYTOWN, MYSTATE 55555
CAPITAL
$
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int main(void) {
int p;
while ( (p = getc(stdin)) != EOF) {
if (islower(p)) {continue;}
if (isspace(p) || ispunct(p) || p == '\n') { printf("%c",p);}
if (isdigit(p) || isupper(p)) {printf("%c",p);}
}
return 0;
}