Blogブログ

Tag: sublime text

sublime text 正規表現

ex 1. "1", "22" "2234", "34" "3234", "34" "4234", "34" "5234", "34" ↓ ("1234", "22"), ("2234", "34"), ("3234", "34"), ("4234", "34"), ("5234", "34"), Find what : "(\d+)", "(\d+)" Replace with : ("($1)","($2)"), ex 2. ("1441","2"), ("1487","2"), ↓ (1441,"2"), (1487,"2"), Find what : \("(\d+)" Replace with : ($1 ex 3. (1441,"2"), (1487,"2"), ↓ (1441,2), (1487,2), Find […]