In the section below from the FA cheatsheet, I am trying to convert this to an array and a simple text file using notepad++ to scrape the following FA page as source or direct HTML copy.
First, I used the TexFx Plugin and it wont match the braces under TextFx->Quick options, which one should I try.
Second using help here on S.O., I also tried
find: ^.*(fa-[^\s]*).* replace: \1but since the copy-paste to NP++ from from the fa cheatsheet ended up in one-long line... the^.did not work.- how to transform to -> 2D array, so I need to get CSV of 2 columns
<div class="col-md-4 col-sm-6 col-lg-3">, and<i class="fa fa-bank"></i> - how to transform to -> simple text list with one description per line
fa-tumblr-square fa-bank ...- how to transform to -> 2D array, so I need to get CSV of 2 columns
Please help me understand the regex snippet or the tool option whichever works is fine.
<div class="col-md-4 col-sm-6 col-lg-3">
<i class="fa fa-fw"></i>
fa-tty
<span class="muted">[&#xf1e4;]</span>
</div>
<div class="col-md-4 col-sm-6 col-lg-3">
<i class="fa fa-fw"></i>
fa-tumblr
<span class="muted">[&#xf173;]</span>
</div>
<div class="col-md-4 col-sm-6 col-lg-3">
<i class="fa fa-fw"></i>
fa-tumblr-square
<span class="muted">[&#xf174;]</span>
</div>
Edit 1:
@ShellFish Here is what I get, it shows nothing matched on using the regex with and withour newline option \(. \)\(fa[^ ]*\)\([^ ]*\) in the Replace I tried space and html comment as well ...
Regex result on the Div list - does not match
