An example of to use a regular expression to manage filenames
find ./* -name "LHD_FXX_08[1-3][0-9]_62[5-7][0-9]_PTS_C_LAMB93_IGN69.copc.laz" -exec mv {} ./output/ \;
This finds the files corresponding to the pattern and copy them.
More details on this site and elsewhere on the web :
https://computing.stat.berkeley.edu/tutorial-using-bash/regex.html