I want to match all characters after 8th character. And not include first 8!
I need exactly a regular expression cause a framework (Ace.js) requires a regexp, not a string. So, this is not an option:
var substring = "123456789".substr(5);
Can I match everything after nth character using regex in JavaScript?
Updates: I can't call replace(), substring() etc because I don't have a string. The string is known at run time and I don't have access to it. As I already said above the framework (Ace.js) asks me for a regex.
.{8}in front of the rest of your regex?match(...)[0]?