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.
var name = XRegExp('(?<first>\\w+) (?<last>\\w+)','g'); var strNew=XRegExp.replace('John Smith', name, '${last}, ${first}');//->John Smith
なぜ strNew は "Smith,John" ではなく "John Smith" なのですか????