How Can I replace specific lines in a text file
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.
1 vote
Share a link to this question
2 Comments
Accepted Answer
5 votes
- starting with the literal TABLE:
- plus one or more + white space(s) \s
- plus the literal "MASS SOURCE"
- plus as few characters as possible .*? (lazy quantifier, when the greedy version .* means as many as possible)
- and then followed by (but not replaced, it's a look forward (?=...) ) one or more carriage return or line feed |[\r
7 Comments
- Extract the table name "VEHICLES 3 - GENERAL VEHICLES 2 - LOADS" from the second file
- Find the corresponding table in the first file
- Replace the content from first file with content from second file.
- picking as many characters different from " as possible (not in the set of just " : [^'] )
- that follow the literal TABLE: followed by one or more white spaces followed by the literal ": (?<=...) is a look backward/behind, it tells the regexp engine to match something that is preceded by what is defined by the ....
More Answers (0)
Categories
Find more on Characters and Strings 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)