How to concatenate strings and do a find/replace












0















I'm trying to do a find, using regex, and I think this part of my code is fine. This give me two variables: 'findtable' and 'findunzip'. I want to concatenate these two variables into a string, and do multiple replaces in a text file. This is where I have a bug. I think I have to loop through all lines of a text file, line by line, because I can't just do a find/replace all (the variables are different throughout the text file). So, I think my code, below, is close, but something is not quite right. It seems to get into a perpetual loop.



# transform data sets
import glob
import re
path = 'C:\Users\my_path\*.yaml'

find1 = 'steps:.*?fields:'
replace1 = ' global:n global:n schema_def:n fields:'

for fname in glob.glob(path):
with open(fname, 'r') as f:
sfile = f.read()

for line in sfile:

# start checking line by line
# get table name
findtable = 'table_name:s*(.*?)s*id: load'

# get unzip patterns
findunzip = 'unzip_patterns:s*(.*?)s*id: extract'

# drop standardize
findstd = '- class: pipe.standardize.Standardize.*?id: load'

concat = '''steps:
- id: extract
conf:
action_class: pipe.actions.extract.extractor.Extractor
unzip_patterns:''' + 'n' + findunzip + 'n'
'''- id: validate
conf:
action_class:
- pipe.actions.preprocess.preprocesser.PreProcesser
- pipe.actions.validate.validator.Validator
- id: standardize
conf:
action_class: pipe
.actions.standardize.standardizer.Standardizer
- id: load
conf:
action_class: pipe.actions.load.loader.Loader
table_name: ''' + findtable

# done with line by line checking; find/replace all
text = re.sub(findstd, concat, sfile)
text = re.sub(find1, replace1, text, flags=re.DOTALL)

f = open(fname,'w')
f.write(text)
f.close()


A sample of the text file that I am working with:



        id: standardize
- class: pipe.steps.load.Load
conf:
table_name: snl_realestate_hb_na_fundamentals1_o
id: load
- id: snl_realestate_hb_na_totalreturn
steps:

- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_TotalReturn.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Period
- data_type: FLOAT

- id: snl_realestate_hb_na_volume
steps:
- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_Volume.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Ticker

id: standardize
- class: pipe.steps.load.Load
conf:
table_name: snl_realestate_hb_na_fundamentals1_o
id: load
- id: snl_realestate_hb_na_totalreturn
steps:

- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_TotalReturn.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Period
- data_type: FLOAT

- id: snl_realestate_hb_na_volume
steps:
- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_Volume.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Ticker

- class: pipe.steps.standardize.Standardize
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Period
- data_type: FLOAT
name: Total_Return
- data_type: FLOAT
name: TR_SNL_Broad_Index_Change
- data_type: FLOAT
name: TR_SandP_500
- data_type: DATETIME
name: Beginning_Pricing_Date
id: standardize
- class: pipe.steps.load.Load
conf:
table_name: snl_realestate_hb_na_totalreturn
id: load

#######


So, the 'concat' string would ultimately look like this:



  steps:
- id: extract
conf:
action_class: pipe.actions.extract.extractor.Extractor
unzip_patterns:
- .*RealEstate_Volume.*_{FD_YYYYMMDD}.*
- id: validate
conf:
action_class:
- pipe.actions.preprocess.preprocesser.PreProcesser
- pipe.actions.validate.validator.Validator
- id: standardize
conf:
action_class: pipe.actions.standardize.standardizer.Standardizer
- id: load
conf:
action_class: pipe.actions.load.loader.Loader
table_name: snl_realestate_hb_na_fundamentals1_o


There are several 'concat' strings that I want to replace in each text file. At the end of the line-by-line checking, I want to do a final find/replace, and this is the same thing for the entire file, so I think I can get this all done in one go. I added comments to make the logic more readable.










share|improve this question




















  • 3





    Please provide a minimal input file on which this exhibits the problem.

    – Prune
    Nov 15 '18 at 21:40











  • In Part-A, loop through the lines gathering parts for the replace. Construct the replacement string when done. In Part-B, loop through the lines using the alternations (regex) of parts you want to replace. Replace with the constructed replace string. It has to be done in two steps.

    – sln
    Nov 15 '18 at 21:49













  • I just added some sample text. The actual text file is huge.

    – ryguy72
    Nov 15 '18 at 21:57






  • 1





    Since sfile is a string, the for line in sfile will loop over the characters in the string. You probably want to do something like for line in sfile.splitlines(True). On the other hand it is always a bad idea to try and parse YAML using regex. There are so many ways the input might be subtle different (indent, flow/block-style, quoted/unquoted scalars, comments) but semantically the same that are easy for the parser but impossible for a (maintainable) regex to process.

    – Anthon
    Nov 16 '18 at 6:15











  • I still have a slight problem with this code, but that definitely helped! Thanks for the tip!!

    – ryguy72
    Nov 16 '18 at 15:07
















0















I'm trying to do a find, using regex, and I think this part of my code is fine. This give me two variables: 'findtable' and 'findunzip'. I want to concatenate these two variables into a string, and do multiple replaces in a text file. This is where I have a bug. I think I have to loop through all lines of a text file, line by line, because I can't just do a find/replace all (the variables are different throughout the text file). So, I think my code, below, is close, but something is not quite right. It seems to get into a perpetual loop.



# transform data sets
import glob
import re
path = 'C:\Users\my_path\*.yaml'

find1 = 'steps:.*?fields:'
replace1 = ' global:n global:n schema_def:n fields:'

for fname in glob.glob(path):
with open(fname, 'r') as f:
sfile = f.read()

for line in sfile:

# start checking line by line
# get table name
findtable = 'table_name:s*(.*?)s*id: load'

# get unzip patterns
findunzip = 'unzip_patterns:s*(.*?)s*id: extract'

# drop standardize
findstd = '- class: pipe.standardize.Standardize.*?id: load'

concat = '''steps:
- id: extract
conf:
action_class: pipe.actions.extract.extractor.Extractor
unzip_patterns:''' + 'n' + findunzip + 'n'
'''- id: validate
conf:
action_class:
- pipe.actions.preprocess.preprocesser.PreProcesser
- pipe.actions.validate.validator.Validator
- id: standardize
conf:
action_class: pipe
.actions.standardize.standardizer.Standardizer
- id: load
conf:
action_class: pipe.actions.load.loader.Loader
table_name: ''' + findtable

# done with line by line checking; find/replace all
text = re.sub(findstd, concat, sfile)
text = re.sub(find1, replace1, text, flags=re.DOTALL)

f = open(fname,'w')
f.write(text)
f.close()


A sample of the text file that I am working with:



        id: standardize
- class: pipe.steps.load.Load
conf:
table_name: snl_realestate_hb_na_fundamentals1_o
id: load
- id: snl_realestate_hb_na_totalreturn
steps:

- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_TotalReturn.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Period
- data_type: FLOAT

- id: snl_realestate_hb_na_volume
steps:
- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_Volume.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Ticker

id: standardize
- class: pipe.steps.load.Load
conf:
table_name: snl_realestate_hb_na_fundamentals1_o
id: load
- id: snl_realestate_hb_na_totalreturn
steps:

- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_TotalReturn.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Period
- data_type: FLOAT

- id: snl_realestate_hb_na_volume
steps:
- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_Volume.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Ticker

- class: pipe.steps.standardize.Standardize
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Period
- data_type: FLOAT
name: Total_Return
- data_type: FLOAT
name: TR_SNL_Broad_Index_Change
- data_type: FLOAT
name: TR_SandP_500
- data_type: DATETIME
name: Beginning_Pricing_Date
id: standardize
- class: pipe.steps.load.Load
conf:
table_name: snl_realestate_hb_na_totalreturn
id: load

#######


So, the 'concat' string would ultimately look like this:



  steps:
- id: extract
conf:
action_class: pipe.actions.extract.extractor.Extractor
unzip_patterns:
- .*RealEstate_Volume.*_{FD_YYYYMMDD}.*
- id: validate
conf:
action_class:
- pipe.actions.preprocess.preprocesser.PreProcesser
- pipe.actions.validate.validator.Validator
- id: standardize
conf:
action_class: pipe.actions.standardize.standardizer.Standardizer
- id: load
conf:
action_class: pipe.actions.load.loader.Loader
table_name: snl_realestate_hb_na_fundamentals1_o


There are several 'concat' strings that I want to replace in each text file. At the end of the line-by-line checking, I want to do a final find/replace, and this is the same thing for the entire file, so I think I can get this all done in one go. I added comments to make the logic more readable.










share|improve this question




















  • 3





    Please provide a minimal input file on which this exhibits the problem.

    – Prune
    Nov 15 '18 at 21:40











  • In Part-A, loop through the lines gathering parts for the replace. Construct the replacement string when done. In Part-B, loop through the lines using the alternations (regex) of parts you want to replace. Replace with the constructed replace string. It has to be done in two steps.

    – sln
    Nov 15 '18 at 21:49













  • I just added some sample text. The actual text file is huge.

    – ryguy72
    Nov 15 '18 at 21:57






  • 1





    Since sfile is a string, the for line in sfile will loop over the characters in the string. You probably want to do something like for line in sfile.splitlines(True). On the other hand it is always a bad idea to try and parse YAML using regex. There are so many ways the input might be subtle different (indent, flow/block-style, quoted/unquoted scalars, comments) but semantically the same that are easy for the parser but impossible for a (maintainable) regex to process.

    – Anthon
    Nov 16 '18 at 6:15











  • I still have a slight problem with this code, but that definitely helped! Thanks for the tip!!

    – ryguy72
    Nov 16 '18 at 15:07














0












0








0








I'm trying to do a find, using regex, and I think this part of my code is fine. This give me two variables: 'findtable' and 'findunzip'. I want to concatenate these two variables into a string, and do multiple replaces in a text file. This is where I have a bug. I think I have to loop through all lines of a text file, line by line, because I can't just do a find/replace all (the variables are different throughout the text file). So, I think my code, below, is close, but something is not quite right. It seems to get into a perpetual loop.



# transform data sets
import glob
import re
path = 'C:\Users\my_path\*.yaml'

find1 = 'steps:.*?fields:'
replace1 = ' global:n global:n schema_def:n fields:'

for fname in glob.glob(path):
with open(fname, 'r') as f:
sfile = f.read()

for line in sfile:

# start checking line by line
# get table name
findtable = 'table_name:s*(.*?)s*id: load'

# get unzip patterns
findunzip = 'unzip_patterns:s*(.*?)s*id: extract'

# drop standardize
findstd = '- class: pipe.standardize.Standardize.*?id: load'

concat = '''steps:
- id: extract
conf:
action_class: pipe.actions.extract.extractor.Extractor
unzip_patterns:''' + 'n' + findunzip + 'n'
'''- id: validate
conf:
action_class:
- pipe.actions.preprocess.preprocesser.PreProcesser
- pipe.actions.validate.validator.Validator
- id: standardize
conf:
action_class: pipe
.actions.standardize.standardizer.Standardizer
- id: load
conf:
action_class: pipe.actions.load.loader.Loader
table_name: ''' + findtable

# done with line by line checking; find/replace all
text = re.sub(findstd, concat, sfile)
text = re.sub(find1, replace1, text, flags=re.DOTALL)

f = open(fname,'w')
f.write(text)
f.close()


A sample of the text file that I am working with:



        id: standardize
- class: pipe.steps.load.Load
conf:
table_name: snl_realestate_hb_na_fundamentals1_o
id: load
- id: snl_realestate_hb_na_totalreturn
steps:

- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_TotalReturn.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Period
- data_type: FLOAT

- id: snl_realestate_hb_na_volume
steps:
- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_Volume.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Ticker

id: standardize
- class: pipe.steps.load.Load
conf:
table_name: snl_realestate_hb_na_fundamentals1_o
id: load
- id: snl_realestate_hb_na_totalreturn
steps:

- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_TotalReturn.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Period
- data_type: FLOAT

- id: snl_realestate_hb_na_volume
steps:
- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_Volume.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Ticker

- class: pipe.steps.standardize.Standardize
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Period
- data_type: FLOAT
name: Total_Return
- data_type: FLOAT
name: TR_SNL_Broad_Index_Change
- data_type: FLOAT
name: TR_SandP_500
- data_type: DATETIME
name: Beginning_Pricing_Date
id: standardize
- class: pipe.steps.load.Load
conf:
table_name: snl_realestate_hb_na_totalreturn
id: load

#######


So, the 'concat' string would ultimately look like this:



  steps:
- id: extract
conf:
action_class: pipe.actions.extract.extractor.Extractor
unzip_patterns:
- .*RealEstate_Volume.*_{FD_YYYYMMDD}.*
- id: validate
conf:
action_class:
- pipe.actions.preprocess.preprocesser.PreProcesser
- pipe.actions.validate.validator.Validator
- id: standardize
conf:
action_class: pipe.actions.standardize.standardizer.Standardizer
- id: load
conf:
action_class: pipe.actions.load.loader.Loader
table_name: snl_realestate_hb_na_fundamentals1_o


There are several 'concat' strings that I want to replace in each text file. At the end of the line-by-line checking, I want to do a final find/replace, and this is the same thing for the entire file, so I think I can get this all done in one go. I added comments to make the logic more readable.










share|improve this question
















I'm trying to do a find, using regex, and I think this part of my code is fine. This give me two variables: 'findtable' and 'findunzip'. I want to concatenate these two variables into a string, and do multiple replaces in a text file. This is where I have a bug. I think I have to loop through all lines of a text file, line by line, because I can't just do a find/replace all (the variables are different throughout the text file). So, I think my code, below, is close, but something is not quite right. It seems to get into a perpetual loop.



# transform data sets
import glob
import re
path = 'C:\Users\my_path\*.yaml'

find1 = 'steps:.*?fields:'
replace1 = ' global:n global:n schema_def:n fields:'

for fname in glob.glob(path):
with open(fname, 'r') as f:
sfile = f.read()

for line in sfile:

# start checking line by line
# get table name
findtable = 'table_name:s*(.*?)s*id: load'

# get unzip patterns
findunzip = 'unzip_patterns:s*(.*?)s*id: extract'

# drop standardize
findstd = '- class: pipe.standardize.Standardize.*?id: load'

concat = '''steps:
- id: extract
conf:
action_class: pipe.actions.extract.extractor.Extractor
unzip_patterns:''' + 'n' + findunzip + 'n'
'''- id: validate
conf:
action_class:
- pipe.actions.preprocess.preprocesser.PreProcesser
- pipe.actions.validate.validator.Validator
- id: standardize
conf:
action_class: pipe
.actions.standardize.standardizer.Standardizer
- id: load
conf:
action_class: pipe.actions.load.loader.Loader
table_name: ''' + findtable

# done with line by line checking; find/replace all
text = re.sub(findstd, concat, sfile)
text = re.sub(find1, replace1, text, flags=re.DOTALL)

f = open(fname,'w')
f.write(text)
f.close()


A sample of the text file that I am working with:



        id: standardize
- class: pipe.steps.load.Load
conf:
table_name: snl_realestate_hb_na_fundamentals1_o
id: load
- id: snl_realestate_hb_na_totalreturn
steps:

- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_TotalReturn.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Period
- data_type: FLOAT

- id: snl_realestate_hb_na_volume
steps:
- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_Volume.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Ticker

id: standardize
- class: pipe.steps.load.Load
conf:
table_name: snl_realestate_hb_na_fundamentals1_o
id: load
- id: snl_realestate_hb_na_totalreturn
steps:

- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_TotalReturn.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Period
- data_type: FLOAT

- id: snl_realestate_hb_na_volume
steps:
- class: pipe.steps.extract.Extract
conf:
unzip_patterns:
- .*RealEstate_Volume.*_{FD_YYYYMMDD}.*
id: extract
- class: pipe.steps.validate.Validate
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Ticker

- class: pipe.steps.standardize.Standardize
conf:
schema_def:
fields:
- data_type: STRING
name: Operation
- data_type: STRING
name: SNL_Institution_Key
- data_type: STRING
name: Institution_Name
- data_type: STRING
name: Period
- data_type: FLOAT
name: Total_Return
- data_type: FLOAT
name: TR_SNL_Broad_Index_Change
- data_type: FLOAT
name: TR_SandP_500
- data_type: DATETIME
name: Beginning_Pricing_Date
id: standardize
- class: pipe.steps.load.Load
conf:
table_name: snl_realestate_hb_na_totalreturn
id: load

#######


So, the 'concat' string would ultimately look like this:



  steps:
- id: extract
conf:
action_class: pipe.actions.extract.extractor.Extractor
unzip_patterns:
- .*RealEstate_Volume.*_{FD_YYYYMMDD}.*
- id: validate
conf:
action_class:
- pipe.actions.preprocess.preprocesser.PreProcesser
- pipe.actions.validate.validator.Validator
- id: standardize
conf:
action_class: pipe.actions.standardize.standardizer.Standardizer
- id: load
conf:
action_class: pipe.actions.load.loader.Loader
table_name: snl_realestate_hb_na_fundamentals1_o


There are several 'concat' strings that I want to replace in each text file. At the end of the line-by-line checking, I want to do a final find/replace, and this is the same thing for the entire file, so I think I can get this all done in one go. I added comments to make the logic more readable.







python regex python-3.x






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 16 '18 at 6:09









Anthon

29k1693145




29k1693145










asked Nov 15 '18 at 21:37









ryguy72ryguy72

4,0731719




4,0731719








  • 3





    Please provide a minimal input file on which this exhibits the problem.

    – Prune
    Nov 15 '18 at 21:40











  • In Part-A, loop through the lines gathering parts for the replace. Construct the replacement string when done. In Part-B, loop through the lines using the alternations (regex) of parts you want to replace. Replace with the constructed replace string. It has to be done in two steps.

    – sln
    Nov 15 '18 at 21:49













  • I just added some sample text. The actual text file is huge.

    – ryguy72
    Nov 15 '18 at 21:57






  • 1





    Since sfile is a string, the for line in sfile will loop over the characters in the string. You probably want to do something like for line in sfile.splitlines(True). On the other hand it is always a bad idea to try and parse YAML using regex. There are so many ways the input might be subtle different (indent, flow/block-style, quoted/unquoted scalars, comments) but semantically the same that are easy for the parser but impossible for a (maintainable) regex to process.

    – Anthon
    Nov 16 '18 at 6:15











  • I still have a slight problem with this code, but that definitely helped! Thanks for the tip!!

    – ryguy72
    Nov 16 '18 at 15:07














  • 3





    Please provide a minimal input file on which this exhibits the problem.

    – Prune
    Nov 15 '18 at 21:40











  • In Part-A, loop through the lines gathering parts for the replace. Construct the replacement string when done. In Part-B, loop through the lines using the alternations (regex) of parts you want to replace. Replace with the constructed replace string. It has to be done in two steps.

    – sln
    Nov 15 '18 at 21:49













  • I just added some sample text. The actual text file is huge.

    – ryguy72
    Nov 15 '18 at 21:57






  • 1





    Since sfile is a string, the for line in sfile will loop over the characters in the string. You probably want to do something like for line in sfile.splitlines(True). On the other hand it is always a bad idea to try and parse YAML using regex. There are so many ways the input might be subtle different (indent, flow/block-style, quoted/unquoted scalars, comments) but semantically the same that are easy for the parser but impossible for a (maintainable) regex to process.

    – Anthon
    Nov 16 '18 at 6:15











  • I still have a slight problem with this code, but that definitely helped! Thanks for the tip!!

    – ryguy72
    Nov 16 '18 at 15:07








3




3





Please provide a minimal input file on which this exhibits the problem.

– Prune
Nov 15 '18 at 21:40





Please provide a minimal input file on which this exhibits the problem.

– Prune
Nov 15 '18 at 21:40













In Part-A, loop through the lines gathering parts for the replace. Construct the replacement string when done. In Part-B, loop through the lines using the alternations (regex) of parts you want to replace. Replace with the constructed replace string. It has to be done in two steps.

– sln
Nov 15 '18 at 21:49







In Part-A, loop through the lines gathering parts for the replace. Construct the replacement string when done. In Part-B, loop through the lines using the alternations (regex) of parts you want to replace. Replace with the constructed replace string. It has to be done in two steps.

– sln
Nov 15 '18 at 21:49















I just added some sample text. The actual text file is huge.

– ryguy72
Nov 15 '18 at 21:57





I just added some sample text. The actual text file is huge.

– ryguy72
Nov 15 '18 at 21:57




1




1





Since sfile is a string, the for line in sfile will loop over the characters in the string. You probably want to do something like for line in sfile.splitlines(True). On the other hand it is always a bad idea to try and parse YAML using regex. There are so many ways the input might be subtle different (indent, flow/block-style, quoted/unquoted scalars, comments) but semantically the same that are easy for the parser but impossible for a (maintainable) regex to process.

– Anthon
Nov 16 '18 at 6:15





Since sfile is a string, the for line in sfile will loop over the characters in the string. You probably want to do something like for line in sfile.splitlines(True). On the other hand it is always a bad idea to try and parse YAML using regex. There are so many ways the input might be subtle different (indent, flow/block-style, quoted/unquoted scalars, comments) but semantically the same that are easy for the parser but impossible for a (maintainable) regex to process.

– Anthon
Nov 16 '18 at 6:15













I still have a slight problem with this code, but that definitely helped! Thanks for the tip!!

– ryguy72
Nov 16 '18 at 15:07





I still have a slight problem with this code, but that definitely helped! Thanks for the tip!!

– ryguy72
Nov 16 '18 at 15:07












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53328247%2fhow-to-concatenate-strings-and-do-a-find-replace%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53328247%2fhow-to-concatenate-strings-and-do-a-find-replace%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

鏡平學校

ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

Why https connections are so slow when debugging (stepping over) in Java?