Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于以下条件,我需要一个正则表达式。
/
//
><?\|@’#~-_=+)(*^%$£”!
我特别卡在需要检查字符串是否不应该包含//连续斜杠字符的地方。
.*//.*
.*[^//].*
我想用Gosu写。我想这两种语言都有相似的 API,但仍然值得一提。
也许这就是你需要的
# ^[^>^%$£”!./](?:[/]?[^>^%$£”!./])*$ ^ [^>^%$£”!./] (?: [/]? [^>^%$£”!./] )* $
您的新正则表达式签证需要更多..
^ [a-zA-Z0-9] (?: [/]? [^>^%$£”!./] )* (?<= [a-zA-Z0-9] ) $