I'm after some help with a regex that I can't get to work correctly, I've used a few online tools to test the patterns but with little success.
I need to split a string based on a pattern FS[0-9][0-9], but also include some trailing text which could be any length comma separated text and numbers.
For example: FS01,a,b,c,d,1,2,3FS02,x,y,zFS03,some random text,123FS04,1
Would need to be split into:
FS01,a,b,c,d,1,2,3FS02,x,y,zFS03,some random text,123FS04,1
FSFollowedBySomething