如何获取括号内的值?
我有一个值 Mac(user, name)
如何使用 perl reg 表达式检查括号内的值。
值:Mac(用户,名称) 删除 Mac.. 并检查(用户,名称)以检查它是否包含“用户”...?
感谢您的帮助! :D
I have a value Mac(user, name)
How do i use perl reg expression to do a check on values inside the brackets.
Value: Mac(user,name)
Remove Mac.. and Do a check on (user,name) to check if it contains 'user'...?
Thanks for help!! :D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
怎么样:
输出:
What about:
output:
谢谢大家...我设法使用 split 从我的值中获取数据
有了这个..我的值存储在 $array[1] 内:)
thanks all... i manage to use split to get data from my value
With this.. my value is store inside $array[1] :)
分割解决方案非常脆弱,如果字符串格式错误,将会返回意外的结果。
如果你想更严格,你可以使用这个:
The split solution is very fragile, if the string is badly formatted, it will return unexpected results.
If you want to be more strict, you can use this :