What is the regular expression to match FS00000 were the 0s can be a number from 0-9. There can only be 5 numbers following the FS.
|
|
|||||||||
|
|
|
which matches the line start ( You don't specify which language/regexp, but the above is pretty generic. EDIT: You can provide word boundary markers instead of line start/end markers, which is a little more generic. |
||||||||||||
|
|
|
Note, that if FS00000 is part of other text and doesn't occupy the entire line, you should surround the
|
||
|
|
|
|
If the exact word should be matched don't forget word boundaries:
Depending on the language chosen the syntax for a word boundary might differ. |
|||
|
|
|
will do the trick. This matches any string that begins (^) with FS followed by 5 times 0-9 and then ends ($). Don't use \d in this case since it will also match Unicode Decimal Digits (at least in .NET). |
||
|
|
|
|
Only 5 numbers means 0-5 numbers?
|
||
|
|
|
|
FS[0-9]{5} |
||
|
|
|
|
Try
|
||||||||
|
