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.
この種のコンテンツを分割するための正規表現を探しています:
obj.method(obj.attr,obj.attr2)
そして、分割で配列を返すようにしたい:
["obj", "method(obj.attr, obj.attr2)"]
だから、「。」で分割することはできません。メソッド属性の内容も分割されるためです。
「。」で分割する必要があります。「(」と「)」の間にない場合のみだと思います。
助けていただければ幸いです、ありがとう!
これは、使用する必要がある正規表現です
(\w+)\.(\w+\([^)]*\))