Using regexp to Search Large Text File for Wanted Data
You are now following this question
- You will see updates in your followed content feed.
- You may receive emails, depending on your communication preferences.
An Error Occurred
Unable to complete the action because of changes made to the page. Reload the page to see its updated state.
0 votes
Share a link to this question
Accepted Answer
6 Comments
- abcdABC : literal, matched as is.
- \s : match one white space (including line break, carriage return, tab, etc).
- \d : match one numeric digit.
- . : match one character (wildcard)
- \. : match the period character.
- + : match one or more times whatever precedes : \d+ match one or more numeric digit.
- * : same but 0 or more.
- [ ] : match one character in the set framed by [] : [abd] match a, b, or d (and not the string abd).
- [^ ] : match one character not in the set : [^ef] match one charcater that is neither e nor f.
- (?<= ) : look-behind : match something (defined by what follows the look behind), given the look behind was matched (but not returned) : (?<=Hello )World matches World when it is preceded by |Hello |.
- (?= ) : look-forward : Hello(?=World) matches Hello when it is followed by | World|.
More Answers (0)
Categories
Find more on String Parsing in Help Center and File Exchange
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)