How to find the offset from the notepad ++

 

Sometimes will offset error error directly to us, I need to locate our mistakes based on the offset.

For instance, he given offset 1009.

  1. Do a search ( 按Ctrl +  ˚F)
  2. Select Regular expressionsand make sure there is . matches new linechecked
  3. Enter the search box the following modes:(?<=^.{1009})(.{6})

Description:

(? <= ...) corresponds to a pattern, we are looking
 ^ { 1009 } What corresponds to 1009 characters line
({ 6 }) prior to the equivalent of six characters (from 1009 to 1015)

 

Guess you like

Origin www.cnblogs.com/wqbin/p/12048370.html