明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 499|回复: 3

[讨论] 从后向前搜索字符串

[复制链接]
发表于 2024-6-27 22:53:14 | 显示全部楼层 |阅读模式
本帖最后由 黄翔 于 2024-6-27 23:51 编辑

讨论下与vl-string-search类似.但是从后向前搜索.
表示搜索的开始位置从后向前搜索,缺省值为 0。
(vl-string-search-Reverse Pattern string start-pos)

Pattern      |[STR]                |包含要搜索的子串
String        |[STRL]              |在其中搜索 pattern     
Start-pos    |[INT]               |表示搜索的开始位置从后向前搜索,缺省值为 0。


(vl-string-search-Reverse "foo" "pfooyey on foo you" 0) => 11
(vl-string-search-Reverse "foo" "pfooyey on foo you" 3) => 11
(vl-string-search-Reverse "foo" "pfooyey on foo you" 4) => 11
(vl-string-search-Reverse "foo" "pfooyey on foo you" 5) => 1
怎么写比较好.

 楼主| 发表于 2024-6-27 23:44:40 | 显示全部楼层
  1. (defun vl-string-search-Reverse (Pattern string start-pos / pos pos_lst start-posTrue x)
  2.   (setq pos_lst nil pos 0)
  3.   (while (setq pos (vl-string-search pattern string pos))  
  4.     (setq pos_lst (cons pos pos_lst))
  5.     (setq pos (1+ pos))  
  6.   )   
  7.   (if(null start-pos)(setq start-pos 0))  
  8.   (setq start-posTrue (- (strlen string) start-pos (strlen pattern) ))  
  9.   (setq pos_lst (vl-remove-if '(lambda(x) (< start-posTrue x)) pos_lst))
  10.   (car pos_lst)  
  11. )
发表于 2024-6-28 07:42:36 | 显示全部楼层
本帖最后由 自贡黄明儒 于 2024-6-28 07:43 编辑

只能从左向右搜索吧,能从后向前搜索?lisp的设计都便于掌握,不会搞得那么复杂。
发表于 2024-6-28 09:24:36 | 显示全部楼层
从前往后搜,每次搜到了就把前面的干掉,看最后还剩的字符串长度,反算一下就知道结果了。
或者以搜索字符为分隔符分隔字符串为表,计算最后一项的字符串长度,反算。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 13:45 , Processed in 0.157534 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表