On Thu Jun  7 14:50:38 EDT 2012, rhoyerb...@gmail.com wrote:

> Access utf values and echo from indexes on rc?
> 
> Before I write any code over the issue, does anyone have a grep, sed, or
> split application which matches by utf character values like \U2424 instead
> of whatever built-in token like \n ?

do you mean that instead of matching lines you want to match records delimited
by \u2424?  if so, you can use sam or acme structured regular expressions, 
sres, or
you can just tr ␤ '\n'.  if you want to save the original newlines, you can 
first
change those to an unused character in your text.

as cinap mentions, there's no need to escape codepoints >= 0x80.  rc treats
'em all as the same class of symbol as a-z.

- erik

Reply via email to