gpt4 book ai didi

string - 从 ActionScript 中的字符串替换所有空格、符号、数字、大写字母的最佳方法?

转载 作者:行者123 更新时间:2023-12-04 03:50:26 27 4
gpt4 key购买 nike

简单地采用字符串的最佳方法是什么

var myString:String = "Thi$ i$ a T#%%Ible Exam73@";

并制作 myString = "thiiatibleeam";
或另一个例子
var myString:String = "Totally Awesome String";

并制作 myString = "totallyawesomestring";
在 ActionScript 3 谢谢!

最佳答案

扩展@Sam OverMars 的回答,您可以使用 String 的 replace 方法与 Regex 和 String 的 toLowerCase 方法的组合来获得您要查找的内容。

var str:String = "Thi$ i$ a T#%%Ible Exam73@";
str = str.toLowerCase(); //thi$ i$ a t#%%ible exam73@
str = str.replace(/[^a-z]/g,""); //thiiatibleexam

正则表达式的意思是:
[^a-z] -- any character *not* in the range a-z
/g -- global tag means find all, not just find one

关于string - 从 ActionScript 中的字符串替换所有空格、符号、数字、大写字母的最佳方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7031341/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com