I am trying to read multiple .xls files and I am not sure how the pattern option actually works. For example my .xls files are saved as sba_california , sba_illinois , etc.
What is the appropriate pattern code for the files to read? I think this is where I am messing up. Here is my code:
The pattern argument takes "Regular Expressions" (RegEx) so maybe something like this pattern="^sba_.+\\.xls$".
RegEx describes a text pattern so there are many ways in which you can describe them some more specific than others.