grep¶
-
decida.grep.
grep
(rexp, filename)¶ synopsis:
Python grep.arguments:
rexp (str)
regular expression to find in filefilename (str)
file to searchresult:
- prints out matching lines in file
- return list of matching lines in file
example:
>>> from decida.grep import grep >>> output = grep("Plotname", "smartspice_dc_ascii.raw") >>> print output Plotname: DC Analysis, 27 deg C ['Plotname: DC Analysis, 27 deg C']