Boost regexp如何将Cookie字符串解析为map?
所以 Cookie 字符串看起来像 remixsettings_bits=1;所见即所得=1,2,3,abc; remixclose_tabs=0; remixgroup_close_tabs=786432;混音语言=0;混音=5; remixsid=35d4f9907281708019490d07728c27ca5c10e5de7a869c322222225e3219e;音频音量=100 我想知道如何将 tham 解析为地图 name
<-> 值
?
So Cookie strings look like remixsettings_bits=1; wysiwyg=1,2,3,abc; remixclosed_tabs=0; remixgroup_closed_tabs=786432; remixlang=0; remixchk=5; remixsid=35d4f9907281708019490d07728c27ca5c10e5de7a869c322222225e3219e; audio_vol=100
I wonder how to parse tham into map name
<-> value
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个正则表达式:
(\w+)=([^;]*)
\w+
- 字母数字一次或多次重复=
[ ^;]*
- 除;
之外的任何字符 任意次数的重复结果:
Try this regex:
(\w+)=([^;]*)
\w+
- alphanumeric one or more repetitions=
[^;]*
- any character except;
any number of repetitionsResult: