Take the 2-minute tour ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

From the following text, I'd like to find a n th character. For example, the 10th character is "u"`.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque ac arcu sit amet lorem mollis dignissim ac ut metus. Aliquam sed nulla ut risus sollicitudin luctus vitae eget quam. Nam velit diam, ullamcorper id tempus ac, iaculis sed arcu.

According to this page, \w{10,} would work but when I type it in the Find what field of the Findwindow, it produces the message, 'Can't find the text: "\w{10,}"'

enter image description here

Thanks in advance.

share|improve this question
    
You should update your N++ as that regex should work to find strings of word characters equal to or greater than a length of 10 instead of giving a "Can't find the text" message. –  Thell Oct 15 '12 at 18:44
    
@Thell I'm using the portable v5.9.8. The reason is as far as I remember the recent versions of the portable build had an issue that the registered Run commands gets disappeared. I'll see if I can upgrade it. Thanks for telling me it. –  Teno Oct 15 '12 at 19:07

1 Answer 1

up vote 11 down vote accepted

Press Crtl-G and choose Offset. Enter 10.

enter image description here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.