Memor.の 2011-09-02 12:17 采纳率: 100%
浏览 203
已采纳

检查字符串是否包含子字符串

How can I check whether a given string contains a certain substring, using Perl?

More specifically, I want to see whether s1.domain.com is present in the given string variable.

转载于:https://stackoverflow.com/questions/7283274/check-whether-a-string-contains-a-substring

  • 写回答

3条回答 默认 最新

  • 旧行李 2011-09-02 12:21
    关注

    To find out if a string contains substring you can use the index function:

    if (index($str, $substr) != -1) {
        print "$str contains $substr\n";
    } 
    

    It will return the position of the first occurrence of $substr in $str, or -1 if the substring is not found.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 关于变压器的具体案例分析
  • ¥15 生成的QRCode圖片加上下載按鈕
  • ¥15 板材切割优化算法,数学建模,python,lingo
  • ¥15 科来模拟ARP欺骗困惑求解
  • ¥100 iOS开发关于快捷指令截屏后如何将截屏(或从截屏中提取出的文本)回传给本应用并打开指定页面
  • ¥15 unity连接Sqlserver
  • ¥15 图中这种约束条件lingo该怎么表示出来
  • ¥15 VSCode里的Prettier如何实现等式赋值后的对齐效果?
  • ¥20 keepalive配置业务服务双机单活的方法。业务服务一定是要双机单活的方式
  • ¥50 关于多次提交POST数据后,无法获取到POST数据参数的问题