Regex 101

From bibbleWiki
Revision as of 02:37, 11 April 2021 by Iwiseman (talk | contribs) (Created page with "=Testing= echo "My stuff" | grep "^My" =Examples= =Starts with= <syntaxhighlight lang="regex"> echo "A" |grep "^A" echo "AAAAAAAAAAA" |grep "^A" </syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Testing

echo "My stuff" | grep "^My"

Examples

Starts with

echo "A" |grep "^A" 
echo "AAAAAAAAAAA" |grep "^A"