我必须处理许多字符串(数千个),它们采用以下两种格式之一:
============= Examples of Str=============
123|S|122.14,
S,344,122.146
==============================================
The format of these strings are
A|B|C
B,A,C
我希望他们A=123 B=S C=122.14
和A=344
, B=S
, C=122.146
(其中 A , B , C 对应列名,可以加载到 sql server db 中)
我该怎么做呢。
我可以使用 split 将子字符串作为值。如何将这些值与格式映射并加载它们?
请帮忙。谢谢