Extract strings that start with ${ and end with }

2024/9/20 10:45:07

I'm trying to extract the strings from a file that start with ${ and ends with } using Python. I am using the code below to do so, but I don't get the expected result.

My input file looks like this:

Click    ${SWIFT_TAB}
Click    ${SEARCH_SWIFT_CODE}

and I want to get a list as below:

${SWIFT_TAB}
${SEARCH_SWIFT_CODE}

My current code looks like this:

def findStringFromFile(file):import os,re    with open(file) as f:ans = [] for line in f:matches = re.findall(r'\b\${\S+}\b', line)ans.extend(matches)        print (ans)

I am expecting a list of strings that start with ${ and end with }, but all I currently get is an empty list.

Answer

The problem is that your regexp is buggy, and doesn't match the strings you want to extract. Specifically, you have two issues:

  1. { and } are regexp metacharacters, just like $, and also need to be escaped if you want to match them literally.
  2. \b matches a word boundary, i.e. a position between a "word character" (a letter, a number or an underscore) and a "non-word character" (anything else) or the beginning/end end of string. It does not match between, say, a space and $.

To fix these issues, change your line:

matches = re.findall(r'\b\${\S+}\b', line)

to:

matches = re.findall(r'\$\{\S+\}', line)

and it should work.

See the Python regular expressions documentation for more details.

https://en.xdnf.cn/q/119225.html

Related Q&A

Weibull distribution and the data in the same figure (with numpy and scipy) [closed]

Closed. This question needs debugging details. It is not currently accepting answers.Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to repro…

python: use agg with more than one customized function

I have a data frame like this.mydf = pd.DataFrame({a:[1,1,3,3],b:[np.nan,2,3,6],c:[1,3,3,9]})a b c 0 1 NaN 1 1 1 2.0 3 2 3 3.0 3 3 3 6.0 9I would like to have a resulting dataframe like…

sending multiple images using socket python get sent as one to client

I am capturing screenshots from the server, then sending it to the client, but the images get all sent as one big file to the client that keeps expanding in size. This only happens when i send from one…

What are the different methods to retrieve elements in a pandas Series?

There are at least 4 ways to retrieve elements in a pandas Series: .iloc, .loc .ix and using directly the [] operator.Whats the difference between them ? How do they handle missing labels/out of range…

Speaker recognition - Bad Request error on microsoft oxford

I am using the python wrapper that has been given in the SDK section. Ive been trying to enroll a voice file for a created profile using the python API.I was able to create a profile and list all profi…

Remove list of phrases from string

I have an array of phrases: bannedWords = [hi, hi you, hello, and you]I want to take a sentence like "hi, how are tim and you doing" and get this:", how are tim doing"Exact case mat…

ImportError: No module named... (basics?) [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.Want to improve this question? Add details and clarify the problem by editing this post.Closed 10 years ago.Improv…

How to pass python list address

I want to convert c++ code to python. I have created a python module using SWIG to access c++ classes.Now I want to pass the following c++ code to PythonC++#define LEVEL 3double thre[LEVEL] = { 1.0l, 1…

Python open says file doesnt exist when it does

I am trying to work out why my Python open call says a file doesnt exist when it does. If I enter the exact same file url in a browser the photo appears.The error message I get is:No such file or direc…

How to map one list and dictionary in python [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.Want to improve this question? Add details and clarify the problem by editing this post.Closed 4 years ago.Improve…